v5
latestOpenAPI 3.1.02026-08-04166362486.5 KBList events for a store
List events for a store.
Args: store_identifier: The ID or name of the store. options: The pagination options.
Returns: StoreEventListResponse: The list of events for the store.
Path parameters
The ID or name of the store
Query parameters
Maximum number of items to return per page (1-100)
Maximum number of items to return per page (1-100)
Cursor for forward pagination - get items after this position. Use last_cursor from previous response.
Cursor for forward pagination - get items after this position. Use last_cursor from previous response.
Cursor for backward pagination - get items before this position. Use first_cursor from previous response.
Cursor for backward pagination - get items before this position. Use first_cursor from previous response.
Whether to include total count in response (expensive operation)
Whether to include total count in response (expensive operation)
Time to filter events before
Time to filter events before
Time to filter events after
Time to filter events after
The type of event to list
The type of event to list
Response
The list of events for the store
Example response
{
"pagination": {
"has_more": true,
"first_cursor": "eyJjcmVhdGVkX2F0IjoiMjAyNC0xMi0zMVQyMzo1OTo1OS4wMDBaIiwiaWQiOiJhYmMxMjMifQ==",
"last_cursor": "eyJjcmVhdGVkX2F0IjoiMjAyNC0xMi0zMFQyMzo1OTo1OS4wMDBaIiwiaWQiOiJ4eXo3ODkifQ==",
"total": 42
},
"data": [
{
"rewritten_filters": {
"all": [
{
"key": "price",
"operator": "gt",
"value": "100"
},
{
"key": "color",
"operator": "eq",
"value": "red"
}
],
"any": [
{
"key": "price",
"operator": "gt",
"value": "100"
},
{
"key": "color",
"operator": "eq",
"value": "red"
}
],
"none": [
{
"key": "price",
"operator": "gt",
"value": "100"
},
{
"key": "color",
"operator": "eq",
"value": "red"
}
]
},
"filters": {
"all": [
{
"key": "price",
"operator": "gt",
"value": "100"
},
{
"key": "color",
"operator": "eq",
"value": "red"
}
],
"any": [
{
"key": "price",
"operator": "gt",
"value": "100"
},
{
"key": "color",
"operator": "eq",
"value": "red"
}
],
"none": [
{
"key": "price",
"operator": "gt",
"value": "100"
},
{
"key": "color",
"operator": "eq",
"value": "red"
}
]
}
}
]
}