UPDATE: For some reason, this error has resolved i...
# general-english
a
UPDATE: For some reason, this error has resolved itself. I'm using the same orgId, and Id. ======== Has anyone had any success trying the new workflow blocks? For some reason, I keep getting this error when testing:
Copy code
POST 'https://api.vapi.ai/call/web'
{
    "message": [
        "assistant.model.workflow.orgId must be a UUID"
    ],
    "error": "Bad Request",
    "statusCode": 400
}
Here's a glimpse of my payload:
Copy code
{
  assistant: {
    ...<assistant-object>
    model: {
      provider: 'vapi',
      model: 'custom-1',
      messages: [],
      workflow: {
        id: '00000000-0000-0000-0000-000000000000',
        orgId: '00000000-0000-0000-0000-000000000000',
        ...<additional-workflow-properties>
      }
    }
  }
}
I tried generating a UUID as well as using existing ones from my account. Any thoughts on what might be causing this 400 error?
3 Views