Vapi
01/21/2025, 1:53 PMorgId
field within your workflow object. The error message indicates that the orgId
must be a valid UUID, but in your payload, you're using a placeholder UUID (00000000-0000-0000-0000-000000000000
), which is not a valid UUID for your organization.
To resolve this error, you should replace the placeholder orgId
with the actual UUID of your organization. You can usually find this in your account settings or in the details of your organization within the VAPI platform. Make sure that the UUID you use is the one that was assigned to your organization by VAPI.
Here's what you should do:
1. Obtain the correct orgId
from your VAPI account.
2. Replace the placeholder orgId
in your payload with the correct UUID.
If you're unsure where to find your organization's UUID or if you continue to experience issues after updating the orgId
, please reach out to support for more assistance.Vapi
01/21/2025, 1:53 PMShubham Bajaj
01/21/2025, 3:16 PMamg
01/21/2025, 6:59 PMamg
01/21/2025, 6:59 PMPOST 'https://api.vapi.ai/call/web'
=> 201
Request payload:
"assistant": {
"name": "My agent",
"transcriber": {
"provider": "deepgram",
"model": "nova-2",
"language": "en-US"
},
"model": {
"model": "custom",
"provider": "vapi",
"messages": [],
"workflow": {
"id": "<random-gen-uuid>",
"orgId": "<org-uuid>",
"createdAt": "2025-01-21T18:38:35.712Z",
"updatedAt": "2025-01-21T18:38:35.712Z",
"name": "workflow",
"type": "workflow",
"nodes": [
{
"name": "node-1",
"type": "gather",
"instruction": "Greet the user and ask for their name."
},
{
"name": "node-2",
"type": "say",
"instruction": "My name is peter pan."
}
],
"edges": [
{
"from": "node-1",
"to": "node-2"
}
]
}
}
}
Shubham Bajaj
01/22/2025, 5:50 AM