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
Parameter | Example | Required | Description | Parameter type |
---|---|---|---|---|
mangerId | 1004 | Required | ID of an Manager | Path |
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"
}
}
Updated 12 months ago