Update Routing configuration
Request
PUT /v2/mailboxes/10/routing HTTP/1.1
Authorization: Bearer oauth_token
Content-Type: application/json
{
"state" : "enabled",
"assignmentLimit" : 10,
"assignmentMethod" : "round_robin",
"userIds" : [ 1, 2, 3 ]
}
Response
HTTP/1.1 204 No Content
Path Parameters
/v2/mailboxes/{mailboxId}/routing
Request fields
| Path | Type | Required | Description |
|---|---|---|---|
state |
String |
Y | Routing configuration state, one of enabled or disabled |
assignmentLimit |
Number |
Y | Maximum number of conversations that can be assigned. Minimum 1, maximum 100 |
assignmentMethod |
String |
Y | Method for assigning conversations, one of round_robin or balanced |
userIds |
Array |
Y | List of users to include in the rotation. Must not be empty for enabled routing |