get-stories-by-external-link
Search and retrieve all stories in Shortcut that include a specific external link, enabling efficient tracking of linked references in your project management workflow.
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"externalLink": {
"description": "The external link URL to search for",
"format": "uri",
"maxLength": 2048,
"type": "string"
}
},
"required": [
"externalLink"
],
"type": "object"
}