events_events_top_per_user_list
GET/api/v3//events/events/top_per_user/
Get the top_n events grouped by user count
Request
Query Parameters
action string
top_n integer
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
application
object
required
counted_events integerrequired
unique_users integerrequired
[
{
"application": {},
"counted_events": 0,
"unique_users": 0
}
]
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X GET '/api/v3/events/events/top_per_user/' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'