remove-external-link-from-story
Remove an unwanted external link from a Shortcut story using its public ID and the specific URL. This tool ensures clean and accurate story content management.
Instructions
Remove an external link from a Shortcut story
Input Schema
Name | Required | Description | Default |
---|---|---|---|
externalLink | Yes | The external link URL to remove | |
storyPublicId | Yes | The public ID of the story |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"externalLink": {
"description": "The external link URL to remove",
"format": "uri",
"maxLength": 2048,
"type": "string"
},
"storyPublicId": {
"description": "The public ID of the story",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"storyPublicId",
"externalLink"
],
"type": "object"
}