POST
/
clients
Create Client
curl --request POST \
  --url https://api.chat-dash.com/v1/public/clients \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "language": "en"
}'
{
  "message": "Client created successfully"
}

Headers

Authorization
string
required

All requests to the ChatDash API must be validated with the agency API Key found on your agency profile

Body

application/json
name
string
required

The client's name

language
string
default:en
required

The client's dashboard language setting (ISO 639-1)

Response

OK

message
string
Example:

"Client created successfully"