Skip to main content
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
name
string

The member's name

loginId
string

The member's login ID

email
string

The member's email address

password
string

The member's password

isAdmin
boolean
default:false

Indicates if the member has admin privileges

Response

OK

message
string
Example:

"Member updated successfully"

I