Get payment methods
The Payment Methods endpoint allows you to retrieve the complete list of payment methods you have available for the specified country, along with its payment method's type, code, logos and more.
Authorizations
AuthorizationstringRequired
Authentication using a Bearer Token (Read-Only API Key). The token should be prefixed with "Bearer ".
Path parameters
countrystringRequiredExample:
Country ISO code (e.g., BR, AR, MX).
BRResponses
200
Payment methods successfully retrieved.
application/json
400
The country specified was incorrect or a similar bad request.
application/json
401
Invalid credentials error. Authentication failed.
application/json
get
/v3/payment_methods/{country}GET /v3/payment_methods/{country} HTTP/1.1
Host: api-stg.onekeypayments.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"country": "BR",
"code": "BB",
"name": "Banco do Brasil",
"type": "BANK_DEPOSIT",
"status": "OK",
"logo": "https://resources.onekeypayments.com/cashin/payment_method/square/BB.svg",
"daily_average": 5,
"monthly_average": 5
},
{
"country": "BR",
"code": "BZ",
"name": "Banco Original",
"type": "VOUCHER",
"status": "OK",
"logo": "https://resources.onekeypayments.com/cashin/payment_method/square/BZ.svg",
"daily_average": 5,
"monthly_average": 5
},
{
"country": "BR",
"code": "UL",
"name": "Banrisul AM",
"type": "BANK_TRANSFER",
"status": "OK",
"logo": "https://resources.onekeypayments.com/cashin/payment_method/square/UL.svg",
"daily_average": 5,
"monthly_average": 5
},
{
"country": "BR",
"code": "BL",
"name": "Boleto",
"type": "VOUCHER",
"status": "OK",
"logo": "https://resources.onekeypayments.com/cashin/payment_method/square/BL.svg",
"daily_average": 5,
"monthly_average": 5
},
{
"country": "BR",
"code": "B",
"name": "Bradesco",
"type": "BANK_DEPOSIT",
"status": "OK",
"logo": "https://resources.onekeypayments.com/cashin/payment_method/square/B.svg",
"daily_average": 5,
"monthly_average": 5
},
{
"country": "BR",
"code": "CA",
"name": "Caixa",
"type": "BANK_TRANSFER",
"status": "OK",
"logo": "https://resources.onekeypayments.com/cashin/payment_method/square/CA.svg",
"daily_average": 5,
"monthly_average": 5
},
{
"country": "BR",
"code": "PP",
"name": "Picpay",
"type": "VOUCHER",
"status": "OK",
"logo": "https://resources.onekeypayments.com/cashin/payment_method/square/PP.svg",
"daily_average": 5,
"monthly_average": 5
},
{
"country": "BR",
"code": "SB",
"name": "Santander",
"type": "BANK_TRANSFER",
"status": "OK",
"logo": "https://resources.onekeypayments.com/cashin/payment_method/square/SB.svg",
"daily_average": 5,
"monthly_average": 5
}
]Last updated
Was this helpful?

