cURL
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" }
Update a client member
All requests to the ChatDash API must be validated with the agency API Key found on your agency profile
The ID of the client
The ID of the member
The member's name
The member's login ID
The member's email address
The member's password
Indicates if the member has admin privileges
OK
"Member updated successfully"