get-story
Retrieve detailed information about a specific Shortcut story using its public ID to access project management data and task details.
Instructions
Get a Shortcut story by public ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| storyPublicId | Yes | The public ID of the story to get |
Input Schema (JSON Schema)
{
"properties": {
"storyPublicId": {
"description": "The public ID of the story to get",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"storyPublicId"
],
"type": "object"
}