✨ Asisso is live — Build production voice AI agents with our drag-and-drop workflow builder. Get started → · SDKs →
curl --request POST \
--url https://app.asisso.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": {
"disposition_codes": []
},
"total_runs": 123,
"workflow_configurations": {},
"version_number": 123,
"version_status": "<string>",
"workflow_uuid": "<string>"
}Create a voice agent from an explicit workflow definition
curl --request POST \
--url https://app.asisso.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": {
"disposition_codes": []
},
"total_runs": 123,
"workflow_configurations": {},
"version_number": 123,
"version_status": "<string>",
"workflow_uuid": "<string>"
}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. TheDocumentation Index
Fetch the complete documentation index at: https://asisso-cd509912.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
workflow_definition object contains nodes (the steps in the conversation) and edges (transitions between steps). See Editing a Workflow for the full schema.Successful Response
Show child attributes