Get All EazzyPay Merchants
Test URL
GEThttps://uat.finserve.africa/v3-apis/transaction-api/v3.0/merchants
Live URL
GEThttps://api.finserve.africa/v3-apis/transaction-api/v3.0/merchants
This webservice returns all EazzyPay merchants.
200 Success Response Schema
Field Name | Field Type | Field Description |
---|---|---|
merchant | array | merchants list |
merchant.name | string | merchant name |
merchant.tillnumber | string | merchant till number |
merchant.outlets | array | outlets list |
merchants.outlets.name | string | merchant outlet name |
merchants.outlets.tillnumber | string | merchant outlet till number |
Example Request
⚠️
In the example below, please remember to replace the variables enclosed within curly brackets {{ }} with the actual values.
Signature Formula e.g. randomstringhere
<random_string>
Example Request
curl -X GET \
-H 'Authorization: Bearer {{token}}' \
-L 'https://sandbox.jengahq.io/transaction-test/v3/merchants?per_page=1&page=1'
Example Response
Example Response
{
"merchants": [
{
"name": "Nakumatt",
"tillnumber": "0766002221",
"outlets": [
{
"name": "Nakumatt Presitige",
"tillnumber": "0766002201"
},
{
"name": "Nakumatt Junction",
"tillnumber": "0766014221"
}
]
}
]
}