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 POST \
--url https://dev.superpool.unyte.africa/api/v1/merchants/ \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"company_name": "<string>",
"business_email": "jsmith@example.com",
"support_email": "jsmith@example.com"
}'
{
"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"
}
Register a new merchant on the platform
curl --request POST \
--url https://dev.superpool.unyte.africa/api/v1/merchants/ \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"company_name": "<string>",
"business_email": "jsmith@example.com",
"support_email": "jsmith@example.com"
}'
{
"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"
}
Handles the creation of new Merchants
Serializer for Merchant model