curl --request GET \
--url https://api.cadanapay.com/v1/payment-methods \
--header 'Authorization: Bearer <token>'{
"country": "BR",
"paymentMethods": [
{
"type": "bank",
"currency": "BRL",
"status": "active"
},
{
"type": "proxy",
"currency": "BRL",
"status": "active"
},
{
"type": "swift",
"currency": "USD",
"status": "active"
}
]
}Get a list of available payment methods for a given country code
curl --request GET \
--url https://api.cadanapay.com/v1/payment-methods \
--header 'Authorization: Bearer <token>'{
"country": "BR",
"paymentMethods": [
{
"type": "bank",
"currency": "BRL",
"status": "active"
},
{
"type": "proxy",
"currency": "BRL",
"status": "active"
},
{
"type": "swift",
"currency": "USD",
"status": "active"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The country code in ISO 3166-1 alpha-2 format
The payment method to filter by
The currency to filter by