get-epic
Retrieve Shortcut epic details using the epic's public ID to access project information and track development progress.
Instructions
Get a Shortcut epic by public ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| epicPublicId | Yes | The public ID of the epic to get |
Input Schema (JSON Schema)
{
"properties": {
"epicPublicId": {
"description": "The public ID of the epic to get",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"epicPublicId"
],
"type": "object"
}