Alex
06/09/2025, 4:05 AMVapi Support Bot
06/09/2025, 4:07 AMvariableValues (set as workflow overrides) and extracted variables to your tools or API Request nodes in Vapi workflows by referencing them in your payload using the {{variableName}} syntax. For example:
json
{
"case_info": {
"case_id": "{{caseId}}",
"other_id": "{{otherId}}",
"extracted_id": "{{extractedId}}"
}
}
Just ensure that caseId and otherId are set in your workflow's variableValues, and extractedId is extracted earlier in the workflow. Use these placeholders in your API Request node's URL or body, and Vapi will substitute them at runtime.
Reference: [Vapi Workflows API Request documentation](https://docs.vapi.ai/workflows/nodes/api-request)
Source:
- [API Request Node Documentation](https://docs.vapi.ai/workflows/nodes/api-request)Alex
06/09/2025, 5:04 AMAlex
06/09/2025, 5:07 AMKings_big💫
06/09/2025, 9:05 AM