Get the signatures for all inputs from the wallet
POSThttps://localhost:8000/wallet/p2sh/tx-proposal/get-my-signatures
Get the signatures for all inputs from the wallet
Request
Header Parameters
x-wallet-id stringrequired
Defines the key of the wallet on which the request will be executed.
- application/json
Body
required
Transaction hex representation
txHex stringrequired
Transaction hex representation.
Responses
- 200
Get all signatures from the inputs of the wallet from the transaction hex
- application/json
- Schema
- success
- no-wallet-id
- invalid-wallet-id
Schema
any
Success
{
"success": true,
"signatures": "..."
}
No wallet id parameter
{
"success": false,
"message": "Parameter 'wallet-id' is required."
}
Wallet id parameter is invalid
{
"success": false,
"message": "Invalid wallet-id parameter."
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://localhost:8000/wallet/p2sh/tx-proposal/get-my-signatures' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"txHex": "string"
}'
ResponseClear