get-iteration-stories
Retrieve stories from a specific iteration by its public ID, optionally including detailed descriptions, to integrate Shortcut project management data with AI tools.
Instructions
Get stories in a specific iteration by iteration public ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeStoryDescriptions | No | Indicate whether story descriptions should be included. Including descriptions may take longer and will increase the size of the response. | |
iterationPublicId | Yes | The public ID of the iteration |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"includeStoryDescriptions": {
"default": false,
"description": "Indicate whether story descriptions should be included. Including descriptions may take longer and will increase the size of the response.",
"type": "boolean"
},
"iterationPublicId": {
"description": "The public ID of the iteration",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"iterationPublicId"
],
"type": "object"
}