Insights API (1.0.0)
Download OpenAPI specification:Download
API powering the Insights feature of Algolia.
Push events
This command pushes an array of events.
An event is
- an action:
eventName
- performed in a context:
eventType
- at some point in time provided:
timestamp
- by an end user:
userToken
- on something:
index
Notes:
- To be accepted, all events sent must be valid.
- The size of the body must be less than 2 MB.
- When an event is tied to an Algolia search, it must also provide a
queryID
. If that event is aclick
, their absolutepositions
should also be passed. - We consider that an
index
provides access to 2 resources: objects and filters. An event can only interact with a single resource type, but not necessarily on a single item. As such an event will accept an array ofobjectIDs
orfilters
.
Authorizations:
Request Body schema: application/json
required | Array of objects (InsightEvent) [ items <= 1000 ] Array of events sent. | ||||||||||||||||||
Array
|
Responses
Request samples
- Payload
{- "events": [
- {
- "eventType": "click",
- "eventName": "string",
- "index": "string",
- "userToken": "string",
- "timestamp": 0,
- "queryID": "string",
- "objectIDs": [
- "string"
], - "filters": [
- "string"
], - "positions": [
- 0
]
}
]
}
Response samples
- 200
- 400
- 401
- 413
- 422
{- "message": "string"
}