We are currently in beta. If you have any feedback, please email us at tech@unyte.africa or learn more about our product at https://unyte.africa
curl --request GET \
--url https://dev.superpool.unyte.africa/api/v1/merchants \
--header 'X-API-Key: <api-key>'
{
"count": 123,
"next": "http://api.example.org/accounts/?offset=400&limit=100",
"previous": "http://api.example.org/accounts/?offset=200&limit=100",
"results": [
{
"id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"is_trashed": true,
"trashed_at": "2023-11-07T05:31:56Z",
"restored_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"short_code": "<string>",
"business_email": "jsmith@example.com",
"support_email": "jsmith@example.com",
"is_active": true,
"tax_identification_number": "<string>",
"registration_number": "<string>",
"address": "<string>",
"kyc_verified": true,
"tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
}
Retrieve a list of all merchants on the platform
curl --request GET \
--url https://dev.superpool.unyte.africa/api/v1/merchants \
--header 'X-API-Key: <api-key>'
{
"count": 123,
"next": "http://api.example.org/accounts/?offset=400&limit=100",
"previous": "http://api.example.org/accounts/?offset=200&limit=100",
"results": [
{
"id": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"is_trashed": true,
"trashed_at": "2023-11-07T05:31:56Z",
"restored_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"short_code": "<string>",
"business_email": "jsmith@example.com",
"support_email": "jsmith@example.com",
"is_active": true,
"tax_identification_number": "<string>",
"registration_number": "<string>",
"address": "<string>",
"kyc_verified": true,
"tenant_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
]
}
Number of results to return per page.
The initial index from which to return the results.
List of merchants
The response is of type object
.