get-stories-by-external-link
Find all Shortcut stories that contain a specific external URL to track linked content across your project management system.
Instructions
Find all stories that contain a specific external link
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| externalLink | Yes | The external link URL to search for |
Input Schema (JSON Schema)
{
"properties": {
"externalLink": {
"description": "The external link URL to search for",
"format": "uri",
"maxLength": 2048,
"type": "string"
}
},
"required": [
"externalLink"
],
"type": "object"
}