POST
/
api
/
v1
/
merchants
/
Register a new merchant on Unyte
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"
}

Authorizations

X-API-Key
string
header
required

Body

Handles the creation of new Merchants

Response

200 - application/json

Serializer for Merchant model