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