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

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\"}"
        }
    }
}

Last updated