REST API DOCS
Client APIFees and Payments

Get Payment Bank Account

GET
/backend/api/v1/banks/list/

This API is responsible to get a Payment Bank Account

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X GET "https://example.com/backend/api/v1/banks/list/"
{  "message": "success",  "data": [    {      "columns": "{\"address_of_recepient\":{\"title\":\"Recipient Information\",\"properties\":{\"address\":\"Address\",\"city\":\"City\",\"zip\":\"ZIP\",\"county\":\"County\"}},\"bank_information\":{\"title\":\"Bank Information\",\"properties\":{\"name\":\"Name\",\"address\":\"Address\",\"city\":\"City\",\"zip\":\"ZIP\",\"country\":\"Country\",\"bic_swift\":\"BIC/SWIFT\"}},\"iban\":{\"title\":\"IBAN\"},\"aba\":{\"title\":\"ABA\"},\"account_type\":{\"title\":\"Account Type\"},\"currency\":{\"title\":\"Currency\"}}",      "values": "{'address_of_recepient': {'address': '', 'city': '', 'zip': '', 'county': ''}, 'bank_information': {'name': '', 'address': '', 'city': '', 'zip': '', 'country': '', 'bic_swift': ''}, 'iban': '', 'aba': '', 'account_type': 'Business', 'currency': 'USD'}"    }  ],  "code": 200}