compare_branches
Compare content differences between two branches in Storyblok CMS using unique identifiers. Optimize content management workflows by analyzing and identifying changes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| per_page | No | ||
| source_id | Yes | ||
| target_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"source_id": {
"type": "string"
},
"target_id": {
"type": "string"
}
},
"required": [
"source_id",
"target_id"
],
"type": "object"
}