POST
/
clients
/
{clientId}
/
members
Add Client Member
curl --request POST \
  --url https://api.chat-dash.com/v1/public/clients/{clientId}/members \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "loginId": "<string>",
  "email": "<string>",
  "password": "<string>"
}'
{
  "message": "Member added successfully"
}

Headers

Authorization
string
required

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

Path Parameters

clientId
string
required

The ID of the client

Body

application/json

Response

OK

The response is of type object.