curl --request POST \
--url https://app.dograh.com/api/v1/public/agent/{uuid} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <x-api-key>' \
--data '
{
"phone_number": "<string>",
"initial_context": {}
}
'{
"status": "<string>",
"workflow_run_id": 123,
"workflow_run_name": "<string>"
}Initiate an outbound call using an agent’s public UUID
curl --request POST \
--url https://app.dograh.com/api/v1/public/agent/{uuid} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <x-api-key>' \
--data '
{
"phone_number": "<string>",
"initial_context": {}
}
'{
"status": "<string>",
"workflow_run_id": 123,
"workflow_run_name": "<string>"
}The simplest way to initiate a call programmatically. TheDocumentation Index
Fetch the complete documentation index at: https://docs.dograh.com/llms.txt
Use this file to discover all available pages before exploring further.
uuid is visible in the dashboard URL when viewing an agent.
Use workflow_run_id from the response to later retrieve call details, recordings, and transcripts.
Pass initial_context to inject runtime data as template variables into the agent’s prompt. See Using initial context.