Skip to main content

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:

Alt test Endpoint: https://sandbox.sasapay.app/api/v1/payments/channel-codes/

Sample Request
Headers
Key: Authorization
Value: Bearer Q1k2RW5SOGlsYUZnRzNGMQUlDS3VrTFhVV0xScFVHYQ==

Response Parameters

FieldTypeDescriptionExample
statusBooleanThis status shows whether the list of channel codes was retrieved successfully or notstatus:true
ResponseCodeStringThis status shows whether the list of channel codes was retrieved successfully or notResponseCode:"0"
detailStringThis is the message associated with the operation."Bank List"
bank_nameStringName of the bank"KCB"
bank_codeStringThis 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"
},
]
}