Channel Codes
List of banks and their codes
This endpoint allows the merchant to populate the list of banks and their codes. Banks codes are used as channel codes to identify the bank to which you are sending money to. You can also view the list of channel codes here:
Endpoint: https://sandbox.sasapay.app/api/v1/payments/channel-codes/
Sample Request
Headers
Key: Authorization
Value: Bearer Q1k2RW5SOGlsYUZnRzNGMQUlDS3VrTFhVV0xScFVHYQ==
Response Parameters
Field | Type | Description | Example |
---|---|---|---|
status | Boolean | This status shows whether the list of channel codes was retrieved successfully or not | status:true |
ResponseCode | String | This status shows whether the list of channel codes was retrieved successfully or not | ResponseCode:"0" |
detail | String | This is the message associated with the operation. | "Bank List" |
bank_name | String | Name of the bank | "KCB" |
bank_code | String | This the code assigned to the bank in kenya. | "01" |
Response Sample
{
"status": true,
"ResponseCode": "0",
"detail": "Bank List",
"data": [
{
"bank_name": "ABC Bank",
"bank_code": "35"
},
{
"bank_name": "Absa Bank Kenya Plc",
"bank_code": "03"
},
]
}