PUT
/
clients
/
{clientId}
/
members
/
{memberId}
Update Client Member
curl --request PUT \
  --url https://api.chat-dash.com/v1/public/clients/{clientId}/members/{memberId} \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "loginId": "<string>",
  "email": "<string>",
  "password": "<string>",
  "isAdmin": false
}'
{
  "message": "Member 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

memberId
string
required

The ID of the member

Body

application/json

Response

OK

The response is of type object.