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 enabledordisabled | 
| assignmentLimit | Number | Maximum number of conversations that can be assigned. Always specified for enabledrouting. Minimum 1, maximum 100 | 
| assignmentMethod | String | Method for assigning conversations, one of round_robinorbalanced. Always specified forenabledrouting | 
| userIds | Array | List of users included in the rotation. Always specified for enabledrouting. Can be empty fordisabledrouting |