get-workflow
Retrieve Shortcut workflow details using its public ID for streamlined project management. Specify to fetch all fields or a simplified version for efficiency.
Instructions
Get a Shortcut workflow by public ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
full | No | True to return all workflow fields from the API. False to return a slim version that excludes uncommon fields | |
workflowPublicId | Yes | The public ID of the workflow to get |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"full": {
"default": false,
"description": "True to return all workflow fields from the API. False to return a slim version that excludes uncommon fields",
"type": "boolean"
},
"workflowPublicId": {
"description": "The public ID of the workflow to get",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"workflowPublicId"
],
"type": "object"
}