Create Workflow Run
curl --request POST \
--url https://app.dograh.com/api/v1/workflow/{workflow_id}/runs \
--header 'Content-Type: application/json' \
--data '
{
"mode": "<string>",
"name": "<string>"
}
'{
"id": 123,
"workflow_id": 123,
"name": "<string>",
"mode": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"definition_id": 123,
"initial_context": {}
}Runs
Create Test Run
Execute a workflow without placing a real phone call
POST
/
api
/
v1
/
workflow
/
{workflow_id}
/
runs
Create Workflow Run
curl --request POST \
--url https://app.dograh.com/api/v1/workflow/{workflow_id}/runs \
--header 'Content-Type: application/json' \
--data '
{
"mode": "<string>",
"name": "<string>"
}
'{
"id": 123,
"workflow_id": 123,
"name": "<string>",
"mode": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"definition_id": 123,
"initial_context": {}
}Creates a test execution of the workflow. No outbound call is placed — this is useful for validating agent behavior, checking prompt outputs, and testing tool integrations before going live.Documentation Index
Fetch the complete documentation index at: https://docs.dograh.com/llms.txt
Use this file to discover all available pages before exploring further.
Path Parameters
⌘I