Skip to main content
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 '
{
  "client": {
    "name": "<string>",
    "language": "en"
  },
  "member": {
    "name": "<string>",
    "loginId": "<string>",
    "password": "<string>",
    "email": "<string>"
  }
}
'
{
  "message": "Client created successfully"
}

Documentation Index

Fetch the complete documentation index at: https://docs.chat-dash.com/llms.txt

Use this file to discover all available pages before exploring further.

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
client
object
required
member
object
required

Response

OK

message
string
Example:

"Client created successfully"