rising-crimsonā¢4mo ago
VAPI Dashborad updated full documentation guide
Hello, everyone i am a dev, can anyone tell me where to find the VAPI Dashboard workflows full detailed documentation ?
20 Replies
You can find the full, updated documentation for VAPI Dashboard workflows at the official Vapi site:
š Vapi Workflows Documentation
This page provides step-by-step guides, configuration details, and best practices for building and managing workflows in the dashboard. Bookmark this link for the latest updates and examples!
Source:
- Workflows documentation page
ā¤µļø Mention @Vapi Support Bot for follow-ups š„
rising-crimsonOPā¢4mo ago
Ok thanks, but i didn't find how to make API calls from the workflows ?
@Duckie
To make API calls from Vapi workflows, use the API Request node. Hereās how you can set it up:
1. Add an API Request node in your workflow.
2. Configure the URL, method (GET/POST), headers, and body as needed.
3. Define output variables to extract data from the API response.
Example configuration:
See the API Request node documentation for more details.
Source:
- API Request node documentation
rising-crimsonOPā¢4mo ago
@Duckie
your provided links says not found

It looks like the direct link to the API Request node documentation is currently broken, but you can still add API calls in your workflow using the API Request node. Hereās a quick example of how to configure it:
For more details and step-by-step guidance, check the main Vapi Workflows documentation.
Source:
- Vapi Workflows documentation
rising-crimsonOPā¢4mo ago
@Duckie
{
"url": "https://api.example.com/data",
"method": "GET",
"headers": [{ "key": "Authorization", "value": "Bearer YOUR_TOKEN" }],
"output": { "key": "result", "target": "api_result", "type": "string" }
}
your this provided JSON code is not sufficient how to make api call from the vapi dashboard workflows
To make an API call from a Vapi workflow, add an API Request node and configure it like this:
This will extract
name
and age
from the API response and make them available as variables in your workflow. For more details, see the Vapi Workflows documentation.
Source:
- Vapi Workflows documentationrising-crimsonOPā¢4mo ago
@Duckie as you can see in the attached screenshot that their isn't any field for the output so how can i get the response of the api call ???

Thanks for sharing the screenshot!
According to the documentation, you should be able to define an output schema for the API Request node to extract response data as variables. However, since you donāt see an āoutputā field in the UI, could you check if thereās an āAdvancedā or āSchemaā section, or any expandable area in the node configuration where output mapping might be set? If not, please let me know if you see any other options related to response handlingāthis will help pinpoint if the feature is hidden, moved, or missing in your dashboard version. If you can share a screenshot of the full node configuration panel, that may also help clarify the situation. Sources: - API Request node documentation - Vapi Workflows documentation
According to the documentation, you should be able to define an output schema for the API Request node to extract response data as variables. However, since you donāt see an āoutputā field in the UI, could you check if thereās an āAdvancedā or āSchemaā section, or any expandable area in the node configuration where output mapping might be set? If not, please let me know if you see any other options related to response handlingāthis will help pinpoint if the feature is hidden, moved, or missing in your dashboard version. If you can share a screenshot of the full node configuration panel, that may also help clarify the situation. Sources: - API Request node documentation - Vapi Workflows documentation
deep-jadeā¢4mo ago
Workflows quickstart | Vapi
Build a simple agent that greets users and gathers basic information using Vapi workflows.
rising-crimsonOPā¢4mo ago
@Kings_bigš«
suppose i make an api request with parameters how to get the output response of this api call ??

rising-crimsonOPā¢4mo ago
@Duckie
suppose i make an api request with parameters how to get the output response of this api call ??
suppose i make an api request with parameters how to get the output response of this api call ??

To capture the API response in your Vapi workflow, you need to define an output schema in the API Request node.
Look for an "Output" or "Schema" section in the node configuration and add something like: This will make
Reference: API Request node documentation Source: - API Request node documentation
Look for an "Output" or "Schema" section in the node configuration and add something like: This will make
user_name
and age
available as variables in the rest of your workflow. If you don't see an output/schema section, try expanding advanced or schema options in the node panel.Reference: API Request node documentation Source: - API Request node documentation
deep-jadeā¢4mo ago
Create a custom API tool in Vapi with your endpoint and parameters, add it to your assistantās tools, have your server handle the API call and return a JSON response, which your assistant then processes and includes in replies..
rising-crimsonOPā¢4mo ago
@Kings_bigš«
Ok now i created the tool for makien the api call and on n8n i am seding the response when i test the tool i am getting the output but here when i call the workflow and it hits the Call n8n tool it makes the api resposne but didn't call the output i am sening from the n8n how to capture this output.

deep-jadeā¢4mo ago
End your n8n workflow with a āRespond to Webhookā node, ensure no āWaitā nodes are used, and make sure the webhook is actively listening..
rising-crimsonOPā¢4mo ago
@Kings_bigš«
it's already set to the "Respond to webhook" and working fine when i test from the Tools tab but when i test the call from the workflow it call the tools function but din't speak the output


Make sure your n8n workflow ends with the āRespond to Webhookā node placed last, avoid using any āWaitā nodes to prevent timeouts, confirm the webhook actively listens with an increased timeout if needed, and ensure the response format matches what Vapi expects then test with Postman to isolate if the issue is with n8n or VAPi..
rising-crimsonOPā¢4mo ago
thanks it's done now
Glad the issue was resolved. Please reach out to us if you have any other questions regarding this issue