List Withdrawals
GET/v1/wallet/withdrawals
List your withdrawals. Only crypto assets (no FIATs).
Requires authentication.
Request
Query Parameters
Asset ID.
Asset network.
Your asset address.
A complementary information used in some networks.
A complementary information used in some networks.
Possible values: [PENDING
, COMPLETED
, CANCELED
, CANCELED_SYSTEM
]
Status of the progress of deposit processing.
Timestamp of when this object was created.
Timestamp of when this object status was updated.
A reference to the server indicating the next set of objects to be returned. It is sent back in every response were the number of objects returned is bigger than the limit.
Possible values: non-empty
and <= 200 characters
, >= 1
and <= 200
Default value: 20
Max number of objects to be returned as result of request.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- CANCELED: Canceled by customer or internal processes;
- COMPLETED: All processes have been completed;
- PENDING: Waiting internal processes or blockchain confirmation.
- ]
result object[]
Unique identification of withdrawal.
Asset ID.
Network ID.
Value amount of asset.
The destination address.
A complementary information used in some networks.
A complementary information used in some networks.
Unique Identifier for a particular transaction at blockchain.
Possible values: [CANCELED
, COMPLETED
, PENDING
]
Status of the progress of withdrawal processing:
Timestamp of the time when the this object status was updated.
Timestamp of when this object was created.
Possible values: [INTERNAL_ERROR
, NOT_ENOUGH_FUNDS
, INVALID_DESTINATION_ADDRESS
]
Reason why a withdrawal could not be completed.
{
"result": [
{
"id": "425676437626841396",
"asset": "BTC",
"network": "BTC",
"amount": "0.000447730000000000",
"address": "0x83a127952d266A6eA306c40Ac62A4a70668FE3BE",
"destination_tag": "string",
"memo": "A78910",
"transaction_hash": "101ff27232ed56fd485da4ed7dc95f3f8ba6eb1d24047a521049a0293ad8ff8a",
"status": "CANCELED",
"status_updated_at": 1675811518123456,
"created_at": 1675810392753862,
"negative_status_reason": "INTERNAL_ERROR"
}
]
}