cURL
curl --request PUT \ --url https://your-instance.example.com/api/organizations/{organizationId}/webchat-settings \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "showSenderNameInWebchat": true, "aiAssistantName": "<string>" } '
{ "success": true, "message": "<string>", "data": { "showSenderNameInWebchat": true, "aiAssistantName": "<string>" } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Webchat settings updated
Show child attributes