Get a single Manager

Retrieve a single Manager object

Parameter

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

๐Ÿ“˜

This method accepts application/json

ParameterExampleRequiredDescriptionParameter type
mangerId1004RequiredID of an ManagerPath

Example

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

Response

Returns the Manager object with related objects

{
  "manager": {
    "id": "string",
    "channelId": "string",
    "accountId": "string",
    "name": "string",
    "description": "string",
    "showDescriptionToFront": true,
    "nameDescI18nMap": {
      "additionalProp1": {
        "name": "string",
        "description": "string"
      },
      "additionalProp2": {
        "name": "string",
        "description": "string"
      },
      "additionalProp3": {
        "name": "string",
        "description": "string"
      }
    },
    "profile": {
      "name": "string",
      "empty": true,
      "email": "string",
      "avatarUrl": "string",
      "mobileNumber": "string",
      "additionalProp1": {},
      "additionalProp2": {},
      "additionalProp3": {}
    },
    "email": "string",
    "showEmailToFront": true,
    "mobileNumber": "string",
    "showMobileNumberToFront": true,
    "role": "owner",
    "removed": true,
    "createdAt": 1656032151480,
    "displayAsChannel": true,
    "defaultGroupWatch": "all",
    "defaultDirectChatWatch": "all",
    "defaultUserChatWatch": "all",
    "chatAlertSound": "none",
    "showPrivateMessagePreview": true,
    "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
        }
      ]
    },
    "defaultAllMentionImportant": true,
    "userMessageImportant": true,
    "autoAssignCapacity": 0,
    "statusEmoji": "string",
    "statusText": "string",
    "statusClearAt": 1656032151487,
    "doNotDisturbClearAt": 1656032151487,
    "doNotDisturb": true,
    "avatarUrl": "string",
    "managerId": "string",
    "emailForFront": "string",
    "mobileNumberForFront": "string"
  },
  "online": {
    "channelId": "string",
    "personType": "string",
    "personId": "string",
    "id": "string"
  }
}