Skip to content

Instantly share code, notes, and snippets.

@indrekj
Last active February 21, 2019 09:51
Show Gist options
  • Save indrekj/123391aca22566759f9d578d199e84c5 to your computer and use it in GitHub Desktop.
Save indrekj/123391aca22566759f9d578d199e84c5 to your computer and use it in GitHub Desktop.
curl --request POST \
--header "Authorization: Token $TOKEN" \
--header "Accept: application/vnd.salemove.v1+json" -d '
{
"query_type": "group_by",
"dimensions": ["operator_id", "type"],
"granularity": "all",
"start_date": "2019-02-21T00:00:00Z",
"end_date": "2019-02-22T00:00:00Z",
"filter": {
"type": "and",
"fields": [
{
"type": "selector",
"dimension": "site_id",
"value": "8d4a0c67-4166-4392-bd9d-0f2320ee9d7f"
},
{
"type": "in",
"dimension": "operator_id",
"values": ["b3022fa9-9a7d-4bd4-9e0b-de22d45c7432", "35dc7c90-48fd-41fb-92ad-fe511de4303f"]
}
]
}
}
' "https://api.salemove.com/operators/stats/online_duration"
# Response
[
{
"timestamp": "2019-02-21T00:00:00.000Z",
"seconds": 120,
"type": "chat",
"operator_id": "35dc7c90-48fd-41fb-92ad-fe511de4303f"
},
{
"timestamp": "2019-02-21T00:00:00.000Z",
"seconds": 3,
"type": "video",
"operator_id": "35dc7c90-48fd-41fb-92ad-fe511de4303f"
},
{
"timestamp": "2019-02-21T00:00:00.000Z",
"seconds": 376,
"type": "engaged",
"operator_id": "35dc7c90-48fd-41fb-92ad-fe511de4303f"
},
{
"timestamp": "2019-02-21T00:00:00.000Z",
"seconds": 29,
"type": "audio",
"operator_id": "b3022fa9-9a7d-4bd4-9e0b-de22d45c7432"
},
{
"timestamp": "2019-02-21T00:00:00.000Z",
"seconds": 120,
"type": "quick-break",
"operator_id": "b3022fa9-9a7d-4bd4-9e0b-de22d45c7432"
},
{
"timestamp": "2019-02-21T00:00:00.000Z",
"seconds": 285,
"type": "video",
"operator_id": "b3022fa9-9a7d-4bd4-9e0b-de22d45c7432"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment