Get Withdrawal
GET/v1/withdrawals/:withdrawal_id
Get withdrawal by ID.
Requires authentication.
Request
Path Parameters
withdrawal_id stringrequired
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
- CANCELED: Canceled by customer or internal processes;
- COMPLETED: All processes have been completed;
- PENDING: Waiting internal processes or blockchain confirmation.
result object
id string
Unique identification of withdrawal.
asset string
Asset ID.
network string
Network ID.
amount string
Value amount of asset.
address string
The destination address.
destination_tag string
A complementary information used in some networks.
memo string
A complementary information used in some networks.
transaction_hash string
Unique Identifier for a particular transaction at blockchain.
status string
Possible values: [CANCELED
, COMPLETED
, PENDING
]
Status of the progress of withdrawal processing:
status_updated_at integer
Timestamp of the time when the this object status was updated.
created_at created_at (integer)
Timestamp of when this object was created.
negative_status_reason string
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"
}
}
Loading...