Sessions per channel
Overview
The sessions_per_channel function provides session counts grouped by communication channel. This helps understand channel usage and distribution. Use this endpoint to:
- Analyze channel distribution of conversations
- Compare engagement across different channels
- Plan channel-specific optimizations
Quick start
query SessionsPerChannel(
$accountId: uuid
$deskIds: _uuid
$brainIds: _uuid
$integrationIds: _uuid
$startDate: timestamp
$endDate: timestamp
$isTest: Boolean
) {
rows: sessions_per_channel(
args: {
account_id: $accountId
desk_ids: $deskIds
brain_parent_ids: $brainIds
integration_ids: $integrationIds
start_time: $startDate
end_time: $endDate
is_test: $isTest
}
) {
channel
session_count
user_count
message_count
}
}
Variables:
{
"accountId": "991c12a1-cc58-4377-8e37-f72259e9dac1",
"startDate": "2024-01-08",
"endDate": "2024-01-17"
}
Parameters
| Parameter | Type | Description |
|---|---|---|
accountId | uuid | Account identifier |
deskIds | _uuid | Filter by desk IDs |
brainIds | _uuid | Filter by AI agent IDs |
integrationIds | _uuid | Filter by integration IDs |
startDate | timestamp | Start date (format: yyyy-mm-dd) |
endDate | timestamp | End date (format: yyyy-mm-dd) |
isTest | Boolean | Exclude test sessions |
Response fields
| Field | Type | Description |
|---|---|---|
channel | String | Channel name |
session_count | Int | Number of sessions |
user_count | Int | Number of unique users |
message_count | Int | Number of messages |
Common use cases
Try it
Loading GraphQL Playground...
- Account overview
- Specific desk
- Production only
Get channel distribution for an account:
{
"accountId": "991c12a1-cc58-4377-8e37-f72259e9dac1",
"startDate": "2024-01-08",
"endDate": "2024-01-17"
}
Get channel distribution for a specific desk:
{
"accountId": "991c12a1-cc58-4377-8e37-f72259e9dac1",
"deskIds": "{d2be0283-9b53-4d7b-b77d-2650f3a1a99c}",
"startDate": "2024-01-08",
"endDate": "2024-01-17"
}
Exclude test sessions:
{
"accountId": "991c12a1-cc58-4377-8e37-f72259e9dac1",
"isTest": false,
"startDate": "2024-01-08",
"endDate": "2024-01-17"
}
Example response
{
"data": {
"rows": [
{
"channel": "web",
"session_count": 5420,
"user_count": 4250,
"message_count": 21680
},
{
"channel": "facebook",
"session_count": 1820,
"user_count": 1540,
"message_count": 7280
},
{
"channel": "whatsapp",
"session_count": 2350,
"user_count": 1980,
"message_count": 9400
},
{
"channel": "viber",
"session_count": 890,
"user_count": 720,
"message_count": 3560
}
]
}
}