GET
/
api
/
v1
/
payouts
/
paymentmethods
curl 'https://api.sandbox.uqpay.org/api/v1/payouts/paymentmethods?country_code=US&currency_code=USD' \
-H 'x-auth-token: Bearer 0e043e2ec6898b3220a0921466d7c203' \
-H 'x-client-id: Up1HIsjiETPXLy7gON9PMG'
{
    "code": 200,
    "message": "Success",
    "data": [
        {
            "clearing_systems": "ACH",
            "country_code": "US",
            "currency_code": "USD",
            "payment_method": "local",
            "remark": "",
            "speed_max_days": 0,
            "speed_min_days": 0,
            "transfer_fee": "0",
            "transfer_limit": "0"
        },
        {
            "clearing_systems": "Fedwire",
            "country_code": "US",
            "currency_code": "USD",
            "payment_method": "local",
            "remark": "",
            "speed_max_days": 0,
            "speed_min_days": 0,
            "transfer_fee": "0",
            "transfer_limit": "0"
        },
        {
            "clearing_systems": "SWIFT",
            "country_code": "US",
            "currency_code": "USD",
            "payment_method": "swift",
            "remark": "",
            "speed_max_days": 0,
            "speed_min_days": 0,
            "transfer_fee": "0",
            "transfer_limit": "0"
        }
    ]
}
x-client-id
string
required

x-client-id.

x-auth-token
string
required

Bearer YOUR_TOKEN_HERE.

Parameters

country_code
string
required

Two-letter ISO 3166-2 country code.

currency_code
string
required

Three-letter ISO 4217 currency code.

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
array
curl 'https://api.sandbox.uqpay.org/api/v1/payouts/paymentmethods?country_code=US&currency_code=USD' \
-H 'x-auth-token: Bearer 0e043e2ec6898b3220a0921466d7c203' \
-H 'x-client-id: Up1HIsjiETPXLy7gON9PMG'
{
    "code": 200,
    "message": "Success",
    "data": [
        {
            "clearing_systems": "ACH",
            "country_code": "US",
            "currency_code": "USD",
            "payment_method": "local",
            "remark": "",
            "speed_max_days": 0,
            "speed_min_days": 0,
            "transfer_fee": "0",
            "transfer_limit": "0"
        },
        {
            "clearing_systems": "Fedwire",
            "country_code": "US",
            "currency_code": "USD",
            "payment_method": "local",
            "remark": "",
            "speed_max_days": 0,
            "speed_min_days": 0,
            "transfer_fee": "0",
            "transfer_limit": "0"
        },
        {
            "clearing_systems": "SWIFT",
            "country_code": "US",
            "currency_code": "USD",
            "payment_method": "swift",
            "remark": "",
            "speed_max_days": 0,
            "speed_min_days": 0,
            "transfer_fee": "0",
            "transfer_limit": "0"
        }
    ]
}