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