Get a single Manager

Retrieve a single Manager object

Parameter

Accessible via URL https://api.channel.io/open/v4/managers/{managerId} and HTTP GET

๐Ÿ“˜

This method accepts application/json

ParameterExampleRequiredDescriptionParameter type
mangerId1004RequiredID of an ManagerPath

Example

GET https://api.channel.io/open/v4/managers/1234

Response

Returns the Manager object with related objects

{
  "manager": {
    "id": "string",
    "channelId": "string",
    "accountId": "string",
    "username": "string",
    "name": "string",
    "description": "string",
    "email": "string",
    "mobileNumber": "string",
    "role": "owner",
    "removed": true,
    "createdAt": 1624414655822,
    "defaultGroupWatch": "all",
    "defaultDirectChatWatch": "all",
    "defaultUserChatWatch": "all",
    "operatorScore": 0,
    "touchScore": 0,
    "avatar": {
      "bucket": "string",
      "key": "string",
      "width": 0,
      "height": 0
    },
    "operatorEmailReminder": true,
    "operator": true,
    "operatorScheduling": true,
    "operatorTimeRanges": {
      "timeRanges": [
        {
          "dayOfWeeks": [
            "mon"
          ],
          "from": 0,
          "to": 0
        }
      ]
    },
    "avatarUrl": "string",
    "managerId": "string"
  },
  "online": {
    "channelId": "string",
    "personType": "string",
    "personId": "string",
    "id": "string"
  }
}