Get Routing configuration
Request
GET /v2/mailboxes/10/routing HTTP/1.1
Authorization: Bearer oauth_token
Response
HTTP/1.1 200 OK
Content-Type: application/hal+json
{
"state" : "enabled",
"assignmentLimit" : 10,
"assignmentMethod" : "round_robin",
"userIds" : [ 1, 2, 3 ],
"_links" : {
"self" : {
"href" : "..."
}
}
}
Path Parameters
/v2/mailboxes/{mailboxId}/routing
Response fields
| Path | Type | Description |
|---|---|---|
state |
String |
Routing configuration state, one of enabled or disabled |
assignmentLimit |
Number |
Maximum number of conversations that can be assigned. Always specified for enabled routing. Minimum 1, maximum 100 |
assignmentMethod |
String |
Method for assigning conversations, one of round_robin or balanced. Always specified for enabled routing |
userIds |
Array |
List of users included in the rotation. Always specified for enabled routing. Can be empty for disabled routing |