1. Authorization
ZamuPay API Documentation
  • Introduction
  • Definitions
    • Data Types
  • Authorization
    • Overview
    • Token Request
      POST
    • Find Transaction Routes
      GET
    • Health Check
      GET
  • Checkout Request
    • Overview
    • Checkout Order Request
      POST
    • Query Checkout Request
      GET
    • Checkout Callback Request
      POST
  • Payment Request
    • Payment Order Request
      POST
    • Reject Order By OriginatorConversationId
      POST
    • Find Payment Order By OriginatorConversationId
      GET
  • Collection Request
    • Find Express Deposit By OriginatorConversationId
      GET
    • Express Deposit Request
      POST
  • Bill Payments
    • Bill Number
      POST
    • Find Bill Number By Service Id and Account Number
      GET
    • Bill Request
      POST
    • Find Bill Request By Originator Converstion Id
      GET
    • Find Bill Services
      GET
  • KYC
    • Account Number Validation Request
      POST
    • KYC Validation
      POST
    • KYC Validation
      GET
    • Find Account Validation Status by SystemTraceAuditNumber
      GET
  • Payment Links
    • Find Payment Links By Id
    • Create Payment Link
    • Update Payment Link
  • Customer Accounts
    • Balance Check
    • Find Charges By TransactionTypeId
  • Airtime Purchase
    • Airtime Purchase
    • Find Airtime Purchases By OriginatorConversationId
  1. Authorization

Find Transaction Routes

https://auth.zamupay.com
https://auth.zamupay.com
https://auth.zamupay.com
https://auth.zamupay.com
GET
/v1/transaction-routes/assigned-routes

#

This is a GET request that returns a list of transaction routes that you currently have setup

Sample success response:#

{
    "routes": [
        {
            "id": "fcac4af0-68ef-eb11-a864-dc41a9f8739c",
            "category": "1",
            "categoryDescription": "Bank Transfer",
            "categoryIsEnabled": true,
            "routeIntergration": "KCB",
            "country": "Kenya",
            "routeIsActive": true,
            "channelTypes": [
                {
                    "channelType": 3,
                    "channelDescription": "EFT"
                },
                {
                    "channelType": 4,
                    "channelDescription": "RTGS"
                }
            ]
        }
    ]
}

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://auth.zamupay.com/v1/transaction-routes/assigned-routes' \
--header 'Authorization: Bearer <token>'
Response Response Example
{}
Modified at 2026-01-29 06:17:58
Previous
Token Request
Next
Health Check
Built with