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
  • Response

Was this helpful?

  1. Payout System

Get Payout Data

Use this method to get the payout data using the Payout ID.

Endpoint

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

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

Headers

Name
Value

Content-Type

application/json

merchant_public

YOUR MERCHANT PUBLIC

Response

{
    "state": true,
    "data": {
        "payoutData": {
            "payout_id": "TrxFJPpto1azEMQtWKMLkXhLGYWdkm",
            "order_id": "1004",
            "productName": "Withdrawal from Acme",
            "amount": "10000",
            "tokenName": null,
            "chainId": null,
            "receiver_type": "address",
            "receiver_value": "0xdac17f958d2ee523a2206206994597c13d831ec7",
            "vaultAddress": null,
            "receiver": null,
            "finalAmount": null,
            "status": "created",
            "hash": null,
            "expiration": 0,
            "webhook": "https://www.dex3.io/webhooksample",
            "created": 1710857177,
            "notes": "{\"user_id\": \"3\"}"
        }
    }
}
PreviousGet Payout StatusNextPayout Success Webhook

Last updated 1 year ago

Was this helpful?

🫴