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:

NameDescriptionType

ID

Withdrawal ID in the 0xProcessing system

Integer

Reply

Response Type: JSON

Parameters:

NameDescriptionType

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:

                        {
                        "id": 10,
                        "amount": 100.0,
                        "currency": "TRX",
                        "address": "TToSLiYx6gfCrrhnWKXJmrsCivXR1111L",
                        "clientId": "Client",
                        "hash": "966b3db234364093cc438bac3fcbd6c7c1133ead4998e23731310bf48491c8f5",
                        "autoWithdraw": true,
                        "confirmed": true,
                        "aborted": false,
                        "reason": null,
                        "fee": 0.0,
                        "manager": null,
                        "managerActionDate": null,
                        "managerIp": null
                        }

Last updated