sensitive-blue
sensitive-blue2w ago

Cant enter variable values inside assistant override using VAPI API PLAYGROUND

Hi This is so frustrating, when i fixed everything after a long haul, i cant see any input text field to give my variable values to add to my assistant templates as Liquid syntax.
No description
2 Replies
Vapi
Vapi2w ago
If the VAPI API Playground does not show an input for variable values, you can manually add them in your request body like this:
{
"assistantId": "debc2547-c5b1-4d24-9056-2b51ec42",
"assistantOverrides": {
"variableValues": {
"name": "John"
}
}
}
{
"assistantId": "debc2547-c5b1-4d24-9056-2b51ec42",
"assistantOverrides": {
"variableValues": {
"name": "John"
}
}
}
Just replace "name": "John" with your own variable and value. This will fill your assistant template variables as expected.
Reference: Vapi documentation – Dynamic Variables Source: - Dynamic Variables Documentation
⤵️ Mention @Vapi Support Bot for follow-ups 🐥
Shubham Bajaj
Shubham Bajaj2w ago
Vapi doesn’t provide a dashboard field for Liquid variable values, you’ll pass them programmatically via assistantOverrides.variableValues in the SDK, API, or Workflow request..

Did you find this page helpful?