curl --request GET \
--url https://dev.seqhq.io/api/quotes/{id}/analytics \
--header 'Authorization: <authorization>'{
"totalViews": 42,
"uniqueViewers": [
{
"visitorIdentifier": "0190dae7-7228-7619-aad8-c51f56733b2b",
"lastViewedAt": "2024-01-07T10:30:00Z",
"loginType": "SEQUENCE_USER",
"email": "johndoe@example.com"
}
],
"viewsByDay": [
{
"date": "2024-01-07",
"totalViews": 15
}
]
}Retrieve view tracking analytics for a quote
curl --request GET \
--url https://dev.seqhq.io/api/quotes/{id}/analytics \
--header 'Authorization: <authorization>'{
"totalViews": 42,
"uniqueViewers": [
{
"visitorIdentifier": "0190dae7-7228-7619-aad8-c51f56733b2b",
"lastViewedAt": "2024-01-07T10:30:00Z",
"loginType": "SEQUENCE_USER",
"email": "johndoe@example.com"
}
],
"viewsByDay": [
{
"date": "2024-01-07",
"totalViews": 15
}
]
}Your API credentials. Eg. Basic {credentials}.
Use this header to select an API version
2024-07-30 Quote ID
OK
42
Show child attributes
[
{
"visitorIdentifier": "0190dae7-7228-7619-aad8-c51f56733b2b",
"lastViewedAt": "2024-01-07T10:30:00Z",
"loginType": "SEQUENCE_USER",
"email": "johndoe@example.com"
}
]Show child attributes
[{ "date": "2024-01-07", "totalViews": 15 }]