curl --request POST \
--url https://app.dograh.com/api/v1/telephony/initiate-call \
--header 'Content-Type: application/json' \
--data '
{
"workflow_id": 123,
"workflow_run_id": 123,
"phone_number": "<string>"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Start an outbound call with more control than the public endpoint
curl --request POST \
--url https://app.dograh.com/api/v1/telephony/initiate-call \
--header 'Content-Type: application/json' \
--data '
{
"workflow_id": 123,
"workflow_run_id": 123,
"phone_number": "<string>"
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Use this endpoint when you need to specify 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.
workflow_run_id to resume context from a previous run, or when you want to use the workflow’s integer ID instead of its public UUID.