Created
February 21, 2019 10:01
-
-
Save indrekj/ffc72b640d43a3afc1db9dcd55923363 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"], | |
"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 | |
}, | |
{ | |
"timestamp": "2019-02-21T00:00:00.000Z", | |
"count": 3, | |
"average_duration_in_seconds": 40, | |
"operator_id": "b3022fa9-9a7d-4bd4-9e0b-de22d45c7432", | |
"total_duration_in_seconds": 100 | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment