Naveen CB
05/29/2025, 3:24 AMKavinesh
05/29/2025, 4:53 AMNaveen CB
05/29/2025, 6:08 AMNaveen CB
05/29/2025, 6:09 AMKings_big💫
05/29/2025, 2:57 PMVapi Support Bot
05/29/2025, 2:58 PM$ref references.
Instead, define all properties directly in the schema, like this:
json
{
"type": "object",
"properties": {
"firstName": { "type": "string" }
}
}
This ensures compatibility with Vapi and supported LLM providers.
Source:
- [Vapi API Request Node Documentation](https://docs.vapi.ai/workflows/nodes/api-request)Vapi Support Bot
05/29/2025, 2:59 PM$ref references.
Instead, define properties directly, like this:
json
"body": {
"type": "object",
"properties": {
"firstName": { "type": "string" }
}
}
Avoid using $ref in your schema, as it's not supported by Vapi's function calling with OpenAI, Anthropic, or Google.
For more details, see the [API Request Node documentation](https://docs.vapi.ai/workflows/nodes/api-request).
Source:
- [API Request Node documentation](https://docs.vapi.ai/workflows/nodes/api-request)Chiranjeet Mishra
05/29/2025, 9:58 PMNaveen CB
06/02/2025, 1:39 AMNaveen CB
06/02/2025, 1:40 AM