Get list of events
GET/events
Get list events
Request
Query Parameters
user_id stringrequired
User on which get event
Example: 3456
type stringrequired
Type of event to get
Example: custom_event
page stringrequired
Page of result, standard is 1 (9 elements per page)
Example: 1
Header Parameters
Accept stringrequired
Example: application/json
Responses
- 200
- 404
Response Headers
- application/json
- Schema
- Example (from schema)
- 1
Schema
Array [
]
status stringrequired
events
object[]
required
id stringrequired
user stringrequired
type stringrequired
properties
object
required
object
date_created stringrequired
{
"status": "string",
"events": [
{
"id": "string",
"user": "string",
"type": "string",
"properties": {},
"date_created": "string"
}
]
}
OK
{
"status": "<string>",
"events": [
{
"id": "<string>",
"user": "<string>",
"type": "<string>",
"properties": {},
"date_created": "<string>"
},
{
"id": "<string>",
"user": "<string>",
"type": "<string>",
"properties": {},
"date_created": "<string>"
}
]
}
Response Headers
- application/json
- Schema
- Example (from schema)
- 1
Schema
status stringrequired
{
"status": "string"
}
Not Found
{
"status": "<string>"
}
Loading...