GET
/
api
/
v1
/
payouts
/
validation
curl 'https://api.sandbox.uqpay.org/api/v1/payouts/validation?amount=1&currency=USD&beneficiary_id=c45a4e8e-5969-4609-8218-091f5db7287e' \
-H 'x-auth-token: Bearer 0e043e2ec6898b3220a0921466d7c203' \
-H 'x-client-id: Up1HIsjiETPXLy7gON9PMG'
{
    "code": 200,
    "message": "Success",
    "data": {
        "enable_payer": true,
        "fee_amount": "0.09"
    }
}
x-client-id
string
required

x-client-id.

x-auth-token
string
required

Bearer YOUR_TOKEN_HERE.

Parameters

amount
string
required

Amount.

currency
string
required

Currency of the balance.
Three-letter ISO 4217 currency code.

charge_type
string
required

Charge type of the beneficiary.

beneficiary_id
string
required

ID of the beneficiary.

Response

code
number

Indicates whether the call was successful. 200 if successful, 400 if not.

message
string

Response Message. “Success” if successful, others not.

data
object
curl 'https://api.sandbox.uqpay.org/api/v1/payouts/validation?amount=1&currency=USD&beneficiary_id=c45a4e8e-5969-4609-8218-091f5db7287e' \
-H 'x-auth-token: Bearer 0e043e2ec6898b3220a0921466d7c203' \
-H 'x-client-id: Up1HIsjiETPXLy7gON9PMG'
{
    "code": 200,
    "message": "Success",
    "data": {
        "enable_payer": true,
        "fee_amount": "0.09"
    }
}