Skip to main content
POST
/
api
/
v1
/
workflow
/
create
/
definition
Create Workflow
curl --request POST \
  --url https://app.dograh.com/api/v1/workflow/create/definition \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "workflow_definition": {}
}
'
{
  "id": 123,
  "name": "<string>",
  "status": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "workflow_definition": {},
  "current_definition_id": 123,
  "template_context_variables": {},
  "call_disposition_codes": {},
  "total_runs": 123,
  "workflow_configurations": {}
}
Creates an agent from a node and edge graph you provide directly. Use this when you want full control over the workflow structure, or when programmatically generating agents. The workflow_definition object contains nodes (the steps in the conversation) and edges (transitions between steps). See Editing a Workflow for the full schema.

Headers

authorization
string | null
X-API-Key
string | null

Body

application/json
name
string
required
workflow_definition
Workflow Definition · object
required

Response

Successful Response

id
integer
required
name
string
required
status
string
required
created_at
string<date-time>
required
workflow_definition
Workflow Definition · object
required
current_definition_id
integer | null
required
template_context_variables
Template Context Variables · object
call_disposition_codes
Call Disposition Codes · object
total_runs
integer | null
workflow_configurations
Workflow Configurations · object