Fetches the list of listened proposals for this wallet
GET/wallet/atomic-swap/tx-proposal/list
Fetches the list of listened proposals for this wallet
Request
Header Parameters
x-wallet-id stringrequired
Defines the key of the wallet on which the request will be executed.
Responses
- 200
Successful listing of registered proposals.
- application/json
- Schema
- success
- no-wallet-id
- invalid-wallet-id
Schema
any
Success
{
"success": {
"summary": "Successful listing",
"value": {
"success": true,
"proposals": [
"1a574e6c-73...",
"85585de5-67..."
]
}
}
}
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...