Cant enter variable values inside assistant overri...
# support
m
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. https://cdn.discordapp.com/attachments/1404783595276730461/1404783595519873147/Screenshot_2025-08-12_163509.png?ex=689c722c&is=689b20ac&hm=b0e449fe750e7cc6d3fedcb71897f79379327cd3b52e2feb762608eb090df11e&
v
If the VAPI API Playground does not show an input for variable values, you can manually add them in your request body like this:
Copy code
json
{
  "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](https://docs.vapi.ai/assistants/dynamic-variables) Source: - [Dynamic Variables Documentation](https://docs.vapi.ai/assistants/dynamic-variables)
c
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..
6 Views