Comment on page
Check withdrawal status by Withdrawal ID
Request
Request Type: GET
Endpoint:
https://app.0xprocessing.com/Api/GetWithdraw/{id}
Used to check the status of the withdrawal
To confirm the withdrawal correctly, it must be interrogated before the value in the "Hash" parameter appears and 'Confirmed'= true
Or aborted = true
The request must contain an APIKEY header with your API key. The key can be generated in the menu Merchant\Classic processing\URL to receive a callback about payment status.
Parameters:
Name | Description | Type |
---|---|---|
ID | Withdrawal ID in the 0Xprocessing system | Integer |
Reply
Response Type: JSON
Parameters:
Name | Description | Type |
---|---|---|
ID | Withdrawal ID in the 0Xprocessing system | Integer |
Currency | Withdrawal currency | String |
Amount | Withdrawal amount in cryptocurrency | Double |
Address | Wallet address | String |
DestinationTag | Destination Tag for XRP output. Optional parameter | String |
ClientId | Unique customer ID in your system | String |
AutoWithdraw | Specify whether the withdrawal will be processed automatically. A value of false means that the withdrawal must be processed by the manager | Boolean |
Hash | Transaction hash | String |
Confirmed | It indicates whether the withdrawal is confirmed | Boolean |
Aborted | It indicates whether the withdrawal is rejected by the manager | Boolean |
Reason | The reason the withdrawal was rejected | String |
Fee | Withdrawal fee | Double |
Manager | The manager who performed the action | String |
ManagerIp | Ip of the manager who committed the action | String |
ManagerActionDate | The date of the manager's action in UTC | DateTime? |
ExternalId | Withdrawal ID in your system | String |
Example response JSON:
1
{
2
"id": 10,
3
"amount": 100.0,
4
"currency": "TRX",
5
"address": "TToSLiYx6gfCrrhnWKXJmrsCivXR1111L",
6
"clientId": "Client",
7
"hash": "966b3db234364093cc438bac3fcbd6c7c1133ead4998e23731310bf48491c8f5",
8
"autoWithdraw": true,
9
"confirmed": true,
10
"aborted": false,
11
"reason": null,
12
"fee": 0.0,
13
"manager": null,
14
"managerActionDate": null,
15
"managerIp": null
16
}
Last modified 4mo ago