PUT
/
clients
/
{clientId}
Update Client
curl --request PUT \
  --url https://api.chat-dash.com/v1/public/clients/{clientId} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "language": "en"
}'
{
  "message": "Client updated 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
name
string

The client's name

language
string
default:en

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

Response

OK

message
string
Example:

"Client updated successfully"