retrieve_multiple_approvals
Retrieve multiple pending approvals from a Storyblok space, optionally filtered by a specific approver user ID, to streamline workflow management.
Instructions
Retrieves multiple approvals from a specified Storyblok space.
:param approver: Optional approver user ID to filter approvals.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
approver | Yes | ||
page | No | ||
per_page | No |
Input Schema (JSON Schema)
{
"properties": {
"approver": {
"title": "Approver",
"type": "integer"
},
"page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Page"
},
"per_page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Per Page"
}
},
"required": [
"approver"
],
"title": "retrieve_multiple_approvalsArguments",
"type": "object"
}