API OVERVIEW
CORE
- Auth
- Balances
ISSUING
- Cards
- Products
- Cardholders
- Transactions
PAYOUT
Webhooks
- Payout
- Beneficiary
Payout
Get a list of payment methods
This endpoint returns a list of payment methods.
GET
/
api
/
v1
/
payouts
/
paymentmethods
Copy
curl 'https://api.sandbox.uqpay.org/api/v1/payouts/paymentmethods?country_code=US¤cy_code=USD' \
-H 'x-auth-token: Bearer 0e043e2ec6898b3220a0921466d7c203' \
-H 'x-client-id: Up1HIsjiETPXLy7gON9PMG'
Copy
{
"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"
}
]
}
Header
x-client-id
.
Bearer YOUR_TOKEN_HERE
.
Parameters
Two-letter ISO 3166-2 country code.
Response
Indicates whether the call was successful. 200 if successful, 400 if not.
Response Message. “Success” if successful, others not.
Two-letter ISO 3166-2 country code.
Supported clearing systems to remit incoming funds to the account.
Minimum processing days.
Maximum processing days
Transfer limit.
Transfer fee.
Remark.
Payment method.
Fields that must be passed when creating a beneficiary.
Copy
curl 'https://api.sandbox.uqpay.org/api/v1/payouts/paymentmethods?country_code=US¤cy_code=USD' \
-H 'x-auth-token: Bearer 0e043e2ec6898b3220a0921466d7c203' \
-H 'x-client-id: Up1HIsjiETPXLy7gON9PMG'
Copy
{
"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"
}
]
}
Copy
curl 'https://api.sandbox.uqpay.org/api/v1/payouts/paymentmethods?country_code=US¤cy_code=USD' \
-H 'x-auth-token: Bearer 0e043e2ec6898b3220a0921466d7c203' \
-H 'x-client-id: Up1HIsjiETPXLy7gON9PMG'
Copy
{
"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"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.