Get the signatures for all inputs from the wallet
POST/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."
}
Loading...