For the complete documentation index, see llms.txt. This page is also available as Markdown.

Business

Register and manage business accounts on the Cekat platform.

Register Business

post
/register

Register a new business account and receive a Cekat API key. This is the first step for partners onboarding new clients onto the Cekat platform.

Authorizations
x-partner-api-keystringRequired

Partner-level API key. Required only for the business registration endpoint.

Body
business_namestringOptional

The display name of your business on the Cekat platform.

Example: testing
emailstringOptional

Business email address used for login and notifications.

Example: [email protected]
phone_numberstringOptional

Business phone number in international format, e.g. 6285695209520.

Example: 6285695209520
passwordstringOptional

Password for the business account (min. 6 characters).

Example: 123456
referral_codestringOptional

Partner referral code, e.g. orderonline. Required if registering via a partner.

Example: orderonline
user_idstringOptional

External user ID from your platform (e.g. OrderOnline user ID).

Example: testing_id
personal_access_keystringOptional

Personal access key from your external platform, used for partner authentication.

Example: testing_access_key
Responses
201

Register Business

application/json
successbooleanOptionalExample: true
status_codeintegerOptionalExample: 201
cekat_api_keystringOptionalExample: string api key
post/register
POST /register HTTP/1.1
Host: api.cekat.ai
x-partner-api-key: YOUR_API_KEY
Content-Type: application/x-www-form-urlencoded
Accept: */*
Content-Length: 202

"business_name='testing'&email='[email protected]'&phone_number='6285695209520'&password='123456'&referral_code='orderonline'&user_id='testing_id'&personal_access_key='testing_access_key'"
{
  "success": true,
  "status_code": 201,
  "cekat_api_key": "string api key"
}

Last updated