Analytics collections
GET/analytics/collections
Get generic analytics on collections
Request
Query Parameters
start_date stringrequired
Start date from when fetch analytics
Example: 2023-10-12 12:45:00
end_date stringrequired
End date to fetch analytics
Example: 2023-12-12 12:45:00
user_id stringrequired
User ID on which get analytics
Example: 5678456
tag_id stringrequired
Tag ID on which get analytics
Example: 45
Header Parameters
Accept stringrequired
Example: application/json
Responses
- 200
- 400
- 401
- 404
Response Headers
- application/json
- Schema
- Example (from schema)
- 1
Schema
Array [
]
Array [
]
Array [
]
status stringrequired
views
object[]
required
total stringrequired
realtime stringrequired
sessions
object[]
required
total stringrequired
average stringrequired
interactions
object[]
required
total stringrequired
comments stringrequired
live_chat stringrequired
{
"status": "string",
"views": [
{
"total": "string",
"realtime": "string"
}
],
"sessions": [
{
"total": "string",
"average": "string"
}
],
"interactions": [
{
"total": "string",
"comments": "string",
"live_chat": "string"
}
]
}
OK
{
"status": "<string>",
"views": [
{
"total": "<string>",
"realtime": "<string>"
},
{
"total": "<string>",
"realtime": "<string>"
}
],
"sessions": [
{
"total": "<string>",
"average": "<string>"
},
{
"total": "<string>",
"average": "<string>"
}
],
"interactions": [
{
"total": "<string>",
"comments": "<string>",
"live_chat": "<string>"
},
{
"total": "<string>",
"comments": "<string>",
"live_chat": "<string>"
}
]
}
Response Headers
- application/json
- Schema
- Example (from schema)
- 1
Schema
status stringrequired
{
"status": "string"
}
Bad Request
{
"status": "<string>"
}
Response Headers
- application/json
- Schema
- Example (from schema)
- 1
Schema
status stringrequired
{
"status": "string"
}
Unauthorized
{
"status": "<string>"
}
Response Headers
- application/json
- Schema
- Example (from schema)
- 1
Schema
status stringrequired
{
"status": "string"
}
Not Found
{
"status": "<string>"
}
Loading...