retrieve_multiple_workflows
Retrieve all workflows in a Storyblok space using the Management API, with optional filtering by content type such as 'page' or 'article' for targeted workflow management.
Instructions
Retrieves all workflows in a Storyblok space via the Management API. Optionally filter by content type (e.g., 'page', 'article', etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content_type | No |
Input Schema (JSON Schema)
{
"properties": {
"content_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Content Type"
}
},
"title": "retrieve_multiple_workflowsArguments",
"type": "object"
}