set-story-external-links
Replace all external links on a Shortcut story with a new set of URLs to update reference materials and documentation links.
Instructions
Replace all external links on a story with a new set of links
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| storyPublicId | Yes | The public ID of the story | |
| externalLinks | Yes | Array of external link URLs to set (replaces all existing links) |
Input Schema (JSON Schema)
{
"properties": {
"externalLinks": {
"description": "Array of external link URLs to set (replaces all existing links)",
"items": {
"format": "uri",
"maxLength": 2048,
"type": "string"
},
"type": "array"
},
"storyPublicId": {
"description": "The public ID of the story",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"storyPublicId",
"externalLinks"
],
"type": "object"
}