v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBActions Datastores
List datastore items
Lists items from a datastore. You can filter the results by specifying either an item key or a filter query parameter, but not both at the same time. Supports server-side pagination for large datasets.
get/api/v2/actions-datastores/{datastore_id}/items
Path parameters
datastore_idstring required
The unique identifier of the datastore to retrieve.
Query parameters
filterstring
Optional query filter to search items using the logs search syntax.
item_keystring
Optional primary key value to retrieve a specific item. Cannot be used together with the filter parameter.
page[limit]integer
Optional field to limit the number of items to return per page for pagination. Up to 100 items can be returned per page.
page[offset]integer
Optional field to offset the number of items to skip from the beginning of the result set for pagination.
sortstring
Optional field to sort results by. Prefix with '-' for descending order (e.g., '-created_at').
Response
OK
Example response
{
"data": [
{
"type": "items"
}
]
}