add-external-link-to-story
Add external URLs to Shortcut stories to provide reference materials, documentation links, or related resources directly within project management workflows.
Instructions
Add an external link to a Shortcut story
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| storyPublicId | Yes | The public ID of the story | |
| externalLink | Yes | The external link URL to add |
Input Schema (JSON Schema)
{
"properties": {
"externalLink": {
"description": "The external link URL to add",
"format": "uri",
"maxLength": 2048,
"type": "string"
},
"storyPublicId": {
"description": "The public ID of the story",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"storyPublicId",
"externalLink"
],
"type": "object"
}