Path parameters
-
The SID of the Workspace with the TaskQueue to fetch.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^WS[0-9a-fA-F]{32}$
. -
The SID of the TaskQueue for which to fetch statistics.
Minimum length is
34
, maximum length is34
. Format should match the following pattern:^WQ[0-9a-fA-F]{32}$
.
Query parameters
-
Only calculate statistics from this date and time and earlier, specified in GMT as an ISO 8601 date-time.
-
Only calculate statistics since this many minutes in the past. The default is 15 minutes.
-
Only calculate statistics from this date and time and later, specified in ISO 8601 format.
-
Only calculate real-time and cumulative statistics for the specified TaskChannel. Can be the TaskChannel's SID or its
unique_name
, such asvoice
,sms
, ordefault
. -
A comma separated list of values that describes the thresholds, in seconds, to calculate statistics on. For each threshold specified, the number of Tasks canceled and reservations accepted above and below the specified thresholds in seconds are computed.
curl \
--request GET 'https://taskrouter.twilio.com/v1/Workspaces/{WorkspaceSid}/TaskQueues/{TaskQueueSid}/Statistics' \
--user "username:password"
{
"url": "https://taskrouter.twilio.com/v1/Workspaces/WSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/TaskQueues/WQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Statistics",
"realtime": {
"total_tasks": 0,
"tasks_by_status": {
"pending": 0,
"assigned": 0,
"reserved": 0,
"wrapping": 0
},
"activity_statistics": [
{
"sid": "WAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"workers": 0,
"friendly_name": "Offline"
},
{
"sid": "WAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"workers": 0,
"friendly_name": "Idle"
},
{
"sid": "WAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"workers": 0,
"friendly_name": "80fa2beb-3a05-11e5-8fc8-98e0d9a1eb73"
},
{
"sid": "WAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"workers": 0,
"friendly_name": "Reserved"
},
{
"sid": "WAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"workers": 0,
"friendly_name": "Busy"
},
{
"sid": "WAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"workers": 0,
"friendly_name": "817ca1c5-3a05-11e5-9292-98e0d9a1eb73"
}
],
"total_eligible_workers": 0,
"total_available_workers": 0,
"longest_task_waiting_age": 0,
"longest_task_waiting_sid": "WTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
},
"cumulative": {
"end_time": "2015-08-18T08:42:34Z",
"start_time": "2015-08-18T08:27:34Z",
"tasks_moved": 0,
"tasks_deleted": 0,
"tasks_entered": 0,
"tasks_canceled": 0,
"reservations_created": 0,
"reservations_accepted": 0,
"reservations_canceled": 0,
"reservations_rejected": 0,
"reservations_rescinded": 0,
"reservations_timed_out": 0,
"avg_task_acceptance_time": 0
},
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"workspace_sid": "WSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"task_queue_sid": "WQaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
}