retrieve_multiple_activities
Fetch activity logs from Storyblok spaces with optional filters like date range, user IDs, or activity types. Simplify tracking and analysis of content changes.
Instructions
Retrieves activity logs for a specified Storyblok space.
Optional filters:
- created_at_gte / created_at_lte: 'YYYY-MM-DD' date strings
- by_owner_ids: list of user IDs
- types: list of activity types (e.g. 'Story', 'Component', 'Asset')
Input Schema
Name | Required | Description | Default |
---|---|---|---|
by_owner_ids | No | ||
created_at_gte | No | ||
created_at_lte | No | ||
types | No |
Input Schema (JSON Schema)
{
"properties": {
"by_owner_ids": {
"anyOf": [
{
"items": {
"type": "integer"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "By Owner Ids"
},
"created_at_gte": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Created At Gte"
},
"created_at_lte": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Created At Lte"
},
"types": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Types"
}
},
"title": "retrieve_multiple_activitiesArguments",
"type": "object"
}