create_approval
Generate an approval request for a Storyblok content entry, specifying the story ID and the approver ID to streamline content review workflows.
Instructions
Creates an approval request for a story (and optional release) in a Storyblok space.
:param story_id: Numeric ID of the content entry to be approved.
:param approver_id: Numeric ID of the user who will approve it.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
approver_id | Yes | ||
story_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"approver_id": {
"title": "Approver Id",
"type": "integer"
},
"story_id": {
"title": "Story Id",
"type": "integer"
}
},
"required": [
"story_id",
"approver_id"
],
"title": "create_approvalArguments",
"type": "object"
}