List Interactions
List interactions with optional filters and pagination.
Supports hybrid filtering: simple fields + advanced LogicalOperator.
Query parameters
Request body
Example request
{
"execution_id": "exec_abc123",
"retriever_id": "ret_product_search",
"session_id": "sess_abc123",
"user_id": "user_abc123",
"feature_id": "doc_abc123",
"interaction_type": "click",
"filters": {
"AND": [
{
"field": "name",
"operator": "eq",
"value": "John"
},
{
"field": "age",
"operator": "gte",
"value": 30
}
],
"OR": [
{
"field": "status",
"operator": "eq",
"value": "active"
},
{
"field": "role",
"operator": "eq",
"value": "admin"
}
],
"NOT": [
{
"field": "department",
"operator": "eq",
"value": "HR"
},
{
"field": "location",
"operator": "eq",
"value": "remote"
}
],
"case_sensitive": true
},
"sort": {
"field": "created_at"
},
"search": "mobile device"
}Response
Successful Response
Example response
{
"results": [
{
"description": "Minimal click interaction (query_snapshot and document_score optional)",
"execution_id": "exec_minimal_123",
"feature_id": "doc_abc123",
"interaction_type": [
"click"
],
"position": 2,
"session_id": "sess_minimal"
}
],
"items": [
{
"description": "Minimal click interaction (query_snapshot and document_score optional)",
"execution_id": "exec_minimal_123",
"feature_id": "doc_abc123",
"interaction_type": [
"click"
],
"position": 2,
"session_id": "sess_minimal"
}
]
}Changes
Changed in 4 of the 34 revisions of this API.1012
- ●
added the new
add_to_projectenum value to the///response property for the response statusresponse-property-enum-value-added
- ●
added the new
add_to_projectenum value to the///response property for the response statusresponse-property-enum-value-added
- ●
added the new
downloadenum value to the///response property for the response statusresponse-property-enum-value-added
- ●
added the new
downloadenum value to the///response property for the response statusresponse-property-enum-value-added
- ●
added the new
playenum value to the///response property for the response statusresponse-property-enum-value-added
- ●
added the new
playenum value to the///response property for the response statusresponse-property-enum-value-added
- ●
added the new
ratingenum value to the///response property for the response statusresponse-property-enum-value-added
- ●
added the new
ratingenum value to the///response property for the response statusresponse-property-enum-value-added
- ●
added the new
saveenum value to the///response property for the response statusresponse-property-enum-value-added
- ●
added the new
saveenum value to the///response property for the response statusresponse-property-enum-value-added
- ●
- ○
the endpoint scheme security
BearerAuth AND NamespaceHeaderwas added to the APIapi-security-added
This revision also has 3 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○
- ○
added the new optional
queryrequest parameterafternew-optional-request-parameter
- ○
added the new optional
queryrequest parameternext_cursornew-optional-request-parameter
- ○
- ○
added the new
geo_bounding_boxenum value to the request property//////request-property-enum-value-added
- ○
added the new
geo_bounding_boxenum value to the request property//////request-property-enum-value-added
- ○
added the new
geo_bounding_boxenum value to the request property//////request-property-enum-value-added
- ○
added the new
geo_polygonenum value to the request property//////request-property-enum-value-added
- ○
added the new
geo_polygonenum value to the request property//////request-property-enum-value-added
- ○
added the new
geo_polygonenum value to the request property//////request-property-enum-value-added
- ○
added the new
geo_radiusenum value to the request property//////request-property-enum-value-added
- ○
added the new
geo_radiusenum value to the request property//////request-property-enum-value-added
- ○
added the new
geo_radiusenum value to the request property//////request-property-enum-value-added
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○