Validate Workflow
curl --request POST \
--url https://app.dograh.com/api/v1/workflow/{workflow_id}/validate{
"is_valid": true,
"errors": [
{
"id": "<string>",
"field": "<string>",
"message": "<string>"
}
]
}Agents
Validate Workflow
Validate a workflow definition without executing it
POST
/
api
/
v1
/
workflow
/
{workflow_id}
/
validate
Validate Workflow
curl --request POST \
--url https://app.dograh.com/api/v1/workflow/{workflow_id}/validate{
"is_valid": true,
"errors": [
{
"id": "<string>",
"field": "<string>",
"message": "<string>"
}
]
}Checks the current workflow definition for structural errors — missing required fields, invalid node configurations, broken edge references — without placing a call or creating a run. If invalid, the response includes a list of errors each with aDocumentation Index
Fetch the complete documentation index at: https://docs.dograh.com/llms.txt
Use this file to discover all available pages before exploring further.
kind (node, edge, or workflow), the offending id, the field, and a human-readable message. See Errors for the full error schema.⌘I