Dex3
Merchant DashboardHome
  • 👋Introduction
    • Dex3 API
    • Payment Gateway
    • Payout System
  • 🌟Getting Started
    • Create merchant
  • ⚙️Connect to API
    • Connect API
  • 🚩Merchant Status
    • Get Merchant Status
  • 🪙Payment Gateway
    • Create New Payment
      • Create Signature
    • Get Payment Status
    • Get Payment Data
    • Payment Success Webhook
      • Verify Webhook Signature
  • 🫴Payout System
    • Create New Payout
      • Create Signature
    • Get Payout Status
    • Get Payout Data
    • Payout Success Webhook
      • Verify Webhook Signature
    • Payout Contracts
Powered by GitBook
On this page
  • Endpoint
  • Headers
  • Different Statuses
  • Response

Was this helpful?

  1. Payout System

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"
}
PreviousCreate SignatureNextGet Payout Data

Last updated 1 year ago

Was this helpful?

🫴