This page was last edited on October 31, 2023, at 13:28.
Comments or questions about this documentation? Contact us for support!
This resource is part of the Channels API section of the Web Services API.
The channel resource includes the channel and the user state for that channel. Channels are returned from GET requests to /api/v2/me/channels?fields=*.
{
"channels":[
{
"channel":"chat",
"userState":{
"id":"9430250E-0A1B-421F-B372-F29E69366DED",
"displayName":"Ready",
"state":"Ready"
}
},
{
"channel":"email",
"userState":{
"id":"900D55CC-2BB0-431F-8BF9-D3525B383BE6",
"displayName":"Not Ready",
"state":"NotReady"
}
},
{
"channel": "voice",
"phoneNumber": "3001",
"switchName": "SIP_Switch",
"userActivity": "Idle",
"userState": {
"id": "9430250E-0A1B-421F-B372-F29E69366DED",
"displayName": "Ready",
"state": "Ready"
}
]
}
Field | Description |
---|---|
channel | The name of the channel. For example, email or chat. |
userState | The user's current state for the channel. This includes the userState's ID, display name, and the state. |
switchName | The name of the switch owning the phone number. Note that switchName will be added to voice and instant-message channels only. |