Get organization session analytics overview
Analytics
Get organization session analytics overview
GET
Get organization session analytics overview
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
Successful operation. Returns overall session analytics summary, daily terminal outcomes grouped by session creation date for the last 14 days, and period-scoped cumulative timeline data for the same window.
Example:
{
"summary": {
"total": 142,
"active": 9,
"success": 103,
"failure": 18,
"expired": 8,
"cancelled": 4
},
"trend": [
{
"date": "2026-03-08",
"success": 2,
"failure": 1,
"expired": 0,
"cancelled": 0
},
{
"date": "2026-03-09",
"success": 1,
"failure": 0,
"expired": 1,
"cancelled": 1
}
],
"timeline": [
{
"date": "2026-03-08",
"total": 5,
"active": 2,
"success": 2,
"failure": 1,
"expired": 0,
"cancelled": 0
},
{
"date": "2026-03-09",
"total": 9,
"active": 3,
"success": 3,
"failure": 1,
"expired": 1,
"cancelled": 1
}
]
}