Created
February 21, 2019 11:56
-
-
Save indrekj/a739cff5c966790a7c0389b4aa3271a6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl --request POST \ | |
--header "Authorization: Token $TOKEN" \ | |
--header "Accept: application/vnd.salemove.v1+json" -d ' | |
{ | |
"query_type": "group_by", | |
"dimensions": ["operator_id", "queue_id"], | |
"granularity": "all", | |
"start_date": "2019-02-21T00:00:00Z", | |
"end_date": "2019-02-22T00:00:00Z", | |
"filter": { | |
"type": "selector", | |
"dimension": "site_id", | |
"value": "8d4a0c67-4166-4392-bd9d-0f2320ee9d7f" | |
} | |
} | |
' "https://api.salemove.com/engagements/stats/duration" | |
# Response | |
[ | |
{ | |
"timestamp": "2019-02-21T00:00:00.000Z", | |
"count": 2, | |
"average_duration_in_seconds": 50, | |
"operator_id": "35dc7c90-48fd-41fb-92ad-fe511de4303f", | |
"total_duration_in_seconds": 100, | |
"queue_id": "8e73c7a0-c120-4e8d-9f51-335c0262ea44" | |
}, | |
{ | |
"timestamp": "2019-02-21T00:00:00.000Z", | |
"count": 1, | |
"average_duration_in_seconds": 40, | |
"operator_id": "b3022fa9-9a7d-4bd4-9e0b-de22d45c7432", | |
"total_duration_in_seconds": 40, | |
"queue_id": "8e73c7a0-c120-4e8d-9f51-335c0262ea44" | |
}, | |
{ | |
"timestamp": "2019-02-21T00:00:00.000Z", | |
"count": 2, | |
"average_duration_in_seconds": 30, | |
"operator_id": "b3022fa9-9a7d-4bd4-9e0b-de22d45c7432", | |
"total_duration_in_seconds": 50, | |
"queue_id": "e7ae6e11-e78b-4507-8132-608fd5ef06c0" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment