Group assignment and load balancing
Configure how conversations are distributed among groups assigned to a department.
curl -L -X PUT 'https://example.com/api/{project_id}/departments/{department_id}' \
-H 'Authorization: {JWT_token}' \
-H 'Content-Type: application/json' \
-d '{
"groups": [
{
"group_id": "{id_group}",
"percentage": 20
},
{
"group_id": "{id_group}",
"percentage": 80
}
]
}'



Last updated