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