Get Payout Status

Use this method to get the payout's status. Useful to poll the status for an ongoing payout.

Endpoint

GET https://api.dex3.io/api/v1/getpayoutstatus/

A successful POST request typically returns a 200 OK or error.

We recommend using webhook to process successful payout instead

Headers

Name
Value

Content-Type

application/json

merchant_public

YOUR MERCHANT PUBLIC

Different Statuses

Key

Description

created

A new payout is created

received

Client has claimed and is waiting Dex3 processing. Do not update withdrawal yet

completed

Payout is completed and webhook must be sent at this point. Process your withdrawal success message

failed

Payout failed

expired

Payout expired. Based on the expiration parameter you set.

Response

{
  "state": true,
  "data": "created"
}

Last updated

Was this helpful?