get-workflow
Retrieve detailed information about a specific workflow using its ID after listing workflows. Requires client ID and workflow ID as compact JSON input.
Instructions
Retrieve a workflow by ID. Use after list-workflows to get detailed information about a specific workflow. IMPORTANT: Arguments must be provided as compact, single-line JSON without whitespace or newlines.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clientId | Yes | ||
id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"clientId": {
"type": "string"
},
"id": {
"type": "string"
}
},
"required": [
"clientId",
"id"
],
"type": "object"
}