Docs 0xProcessing
  • 💡Basic
    • General
      • Terms and definitions
      • Available assets
      • Transaction Fees
    • Introduction guide
      • Deposit flow
      • Payment form
      • Withdrawal flow
      • VRCS - automatic conversion to stablecoins
      • Webhooks flow
      • Web3 processing
      • 0xProcessing use cases
  • 🔑0xProcessing API
    • Obtaining API Keys
    • Deposits
      • Payment form with fixed amount
      • Payment without fixed amount
      • Static wallet
    • Withdrawals
      • Withdrawal by client
      • Check withdrawal status by Withdrawal ID
    • Webhooks
      • Payment form with fixed amount
      • Payment without fixed amount
      • Static wallet
      • Withdrawals
    • Informational Commands
      • Request for balances
      • Coin info
    • Crypto or Fiat Equivalent
      • Fiat currency conversion
      • Conversion of fiat currencies into cryptocurrency
      • Conversion of cryptocurrencies into fiat currencies
      • List of supported fiat currencies for conversion
    • Errors
  • âš¡Web3 processing API
    • Introduction
    • Web3 pool API
  • 🚀Quick start
    • Account registration
    • API set up
    • Setting up Webhooks
    • Payment confirmation
    • Managing withdrawals
    • Create a Manager role
    • Currency management
    • VRCS setup
    • Balance management
    • Transactions and address tracking
    • Notifications
    • Account security
    • Match Crypto Wallet Addresses
  • 🔄FAQ
Powered by GitBook
On this page
  1. 0xProcessing API
  2. Withdrawals

Check withdrawal status by Withdrawal ID

Learn how to check withdrawal statuses by using unique IDs, enabling transparency and real-time updates for your crypto payment operations.

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:

                        {
                        "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
                        }
PreviousWithdrawal by clientNextWebhooks

Last updated 3 months ago

🔑