Others
Get banks
Get banks
GET
/
banks
curl -X GET https://api.swervpay.co/api/v1/banks \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json"
[
{
"bank_code": "<string>",
"bank_name": "<string>"
}
]
curl -X GET https://api.swervpay.co/api/v1/banks \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json"
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200
application/json
OK
The response is of type object[]
.
Was this page helpful?
curl -X GET https://api.swervpay.co/api/v1/banks \
-H "Authorization: Bearer <TOKEN>" \
-H "Content-Type: application/json"
[
{
"bank_code": "<string>",
"bank_name": "<string>"
}
]