Removes a proposal from the registered listened proposals
DELETE/wallet/atomic-swap/tx-proposal/delete/:proposalId
Removes a proposal from the registered listened proposals
Request
Path Parameters
proposalId stringrequired
Registered proposal identifier
Header Parameters
x-wallet-id stringrequired
Defines the key of the wallet on which the request will be executed.
Responses
- 200
Successful registration removal.
- application/json
- Schema
- success
- service-failure
- no-wallet-id
- invalid-wallet-id
Schema
any
Success
{
"success": {
"summary": "Successful removal",
"value": {
"success": true
}
}
}
Failure on the removal
{
"success": {
"summary": "Unsuccessful removal operation",
"value": {
"success": false,
"error": "Failure description"
}
}
}
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...