set-story-external-links
Update all external links in a Shortcut story by replacing them with a specified array of URLs. Use this tool to manage and modify story-related external resources efficiently.
Instructions
Replace all external links on a story with a new set of links
Input Schema
Name | Required | Description | Default |
---|---|---|---|
externalLinks | Yes | Array of external link URLs to set (replaces all existing links) | |
storyPublicId | Yes | The public ID of the story |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"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"
}