I don't get feedback from the ai bot when I make a...
# support
b
Hi, I have a problem with setting up vapi and make.com through feedback whether an action has taken place or not. I make reservations via make.com and it succeeds, but the bot no longer gets the information about whether or not it has taken place. I tried in make.com response webhook, vapi respond to a function call etc. I have mistake in settings vapi or in the principles of make.com? https://cdn.discordapp.com/attachments/1266317076126105691/1266317076532826173/image.png?ex=66a4b52e&is=66a363ae&hm=82d64544d5b600f11255586d87a320059d52fd991879c1a6a3f3dada9a7df744& https://cdn.discordapp.com/attachments/1266317076126105691/1266317076792868887/image.png?ex=66a4b52e&is=66a363ae&hm=ab85ec0c98a8d11338481f56cd9ec8d63f81a289a92b5daf2e6028fd05e008ca&
v
You can continue this conversation by mentioning me in the message.
@beta kostík It sounds like you're trying to integrate VAPI with make.com (formerly Integromat) and you're encountering issues with receiving feedback on whether an action has been successfully completed. To assist you better, I'll need a bit more information about how you've set up your workflow and what specific errors or issues you're encountering. Here are a few steps you can check to ensure proper setup: 1. **Webhook Configuration**: Make sure that the webhook in make.com is correctly configured to send a response back to VAPI. The webhook URL provided by VAPI should be entered into make.com's webhook settings. 2. **VAPI Function Calls**: Ensure that you're using the correct function calls within VAPI to handle responses. If you're expecting a response from make.com, you should have a listener set up in VAPI to handle incoming messages. 3. **Error Handling**: Check if there are any errors being logged by either VAPI or make.com. This can give you clues as to where the issue might be. 4. **API Documentation**: Review the API documentation for both VAPI and make.com to ensure that you're following the correct protocols for sending and receiving data. If you can provide more details on the exact steps you've taken and where you think the issue might be, I can offer more targeted assistance. If you're seeing any error messages, please share them as well.
b
@Vapi so where i can get vapi url and where i can settings incoming messages
v
@beta kostík To get the VAPI URL for setting up webhooks with make.com, you would typically find this in the VAPI dashboard or within the API documentation where webhook endpoints are defined. Here's how you can generally proceed: 1. **VAPI Dashboard**: Log in to your VAPI dashboard. This is where you can manage your VAPI applications and obtain URLs for webhooks. 2. **API Documentation**: Check the VAPI API documentation for information on webhook setup and endpoints. The documentation should provide you with the necessary endpoints to set up incoming messages. 3. **Webhook Setup**: In the VAPI dashboard or API documentation, look for sections related to webhooks or incoming messages. There should be instructions on how to obtain your unique webhook URL. 4. **make.com Configuration**: Once you have your VAPI webhook URL, you can go to your make.com scenario and set up a webhook action. Paste the VAPI webhook URL into the appropriate field in make.com to ensure that it can send responses back to VAPI. 5. **Incoming Message Settings**: For handling incoming messages in VAPI, you would typically set up event listeners or handlers in your VAPI application code. This will allow you to process the data received from make.com. If you're unable to find the webhook URL or the settings for incoming messages in your VAPI dashboard or the API documentation, please reach out to VAPI support for further assistance. They will be able to guide you through the process and provide you with the specific URLs and settings you need for your application.
b
so which url i have to use, when i use make.com. I dont know whichc
@Vapi
v
@beta kostík I apologize for any confusion. To clarify, the URL you need to use when setting up a webhook with make.com will be provided by VAPI. This URL is unique to your VAPI application and is used by make.com to send data back to your VAPI instance. Here's a general outline of the steps you should follow: 1. **Create a Webhook in VAPI**: Within your VAPI application, you would typically have an option to create a new webhook. This process will generate a unique URL that you can use to receive data. 2. **Copy the Webhook URL**: Once the webhook is created in VAPI, you will be given a unique URL. Copy this URL as you will need to enter it into make.com. 3. **Configure make.com**: In your make.com scenario, add a webhook action or module where you can specify the URL to send data to. Paste the VAPI webhook URL you copied into the designated field. 4. **Test the Webhook**: After setting up the webhook in make.com with your VAPI URL, it's a good practice to send a test request to ensure that the integration is working correctly. If you're unsure where to find the option to create a webhook in VAPI or if you're having trouble with the process, please reach out to VAPI support for more detailed guidance. They can provide you with the exact steps and information specific to your VAPI application.
b
where i can create webhook in vapi
@Vapi
v
@beta kostík To create a webhook in VAPI, you would typically follow these steps: 1. **Access VAPI Dashboard**: Log into your VAPI account and access the dashboard where you manage your applications. 2. **Webhook Section**: Look for a section in the dashboard related to webhooks, integrations, or API settings. 3. **Create Webhook**: There should be an option to create a new webhook. This process usually involves specifying a name for the webhook and defining the events you want to trigger the webhook. 4. **Obtain Webhook URL**: After creating the webhook, VAPI should provide you with a unique URL that you can use to receive notifications or data. 5. **Use Webhook URL in make.com**: Copy the provided webhook URL and use it in your make.com scenario to send data back to VAPI. If you are unable to find the option to create a webhook in your VAPI dashboard or if the process is different for your specific setup, please reach out to VAPI support for more detailed instructions. They can provide you with the exact steps you need to take to create a webhook within their system.
b
Server URL The URL of your Vapi server. Server URL Server URL Secret so where i generate custom url
@Vapi
v
@beta kostík To generate a custom URL for your VAPI server, you would typically need to set up a webhook endpoint within your VAPI application. This endpoint will act as the Server URL that you can provide to make.com or other services to send data to your VAPI application. Here's a general approach to generate a custom URL: 1. **Webhook Configuration**: Within your VAPI application, look for a section where you can configure webhooks or endpoints. 2. **Create Endpoint**: Create a new endpoint by specifying a path that will be appended to your VAPI server's base URL. For example, if your VAPI server's base URL is
https://api.yourvapiserver.com
, you might create an endpoint like
/webhook
, resulting in a full URL of
https://api.yourvapiserver.com/webhook
. 3. **Set Up Listener**: Implement a listener in your VAPI application code that will handle POST requests sent to the webhook URL. This listener will process the data sent by make.com. 4. **Secure the Webhook**: Optionally, you may be prompted to set up a secret for securing your webhook. This secret is used to validate that incoming requests to your webhook URL are from trusted sources. 5. **Provide URL to make.com**: Once you have your custom webhook URL (and secret, if applicable), you can provide this information to make.com when setting up the webhook action in your scenario. If you're not sure how to implement these steps within your VAPI application, or if you need a more specific guide based on the VAPI platform you're using, please reach out to VAPI support for further assistance. They can provide you with the exact instructions for generating a custom URL and securing it with a secret.
b
@Vapi can i use webhook url from make.com?
v
@beta kostík Yes, you can use a webhook URL from make.com to receive data from make.com in your VAPI application. Here's how you can set it up: 1. **Create a Webhook in make.com**: In your make.com scenario, create a webhook trigger. When you set up this trigger, make.com will provide you with a unique webhook URL. 2. **Copy the Webhook URL**: Copy the webhook URL that make.com generates for you. 3. **Configure VAPI to Listen**: In your VAPI application, configure it to listen for incoming requests at the endpoint that corresponds to the webhook URL provided by make.com. 4. **Send Data to VAPI**: Use the make.com webhook URL in other services or applications to send data to your make.com scenario, which will then be processed according to your configured workflow and can be forwarded to your VAPI application. Remember, the webhook URL from make.com is used to trigger a scenario on make.com. If you want to send data from make.com to VAPI, you will need to set up an action in your make.com scenario to make a request to your VAPI application's endpoint. If you need further assistance with setting up the webhook in make.com or configuring your VAPI application to handle incoming requests, please reach out to the respective support teams for more detailed guidance.
b
You haven't added Make Credentials. Please Copy paste the Webhook URL from your make.com scenario into the ServerURL.
@Vapi
v
@beta kostík I apologize for any confusion. To integrate make.com with your VAPI application, you need to copy the webhook URL from your make.com scenario and paste it into the Server URL field in your VAPI application settings. Here's how to do it: 1. **Create or Select a Scenario in make.com**: Log into your make.com account and either create a new scenario or select an existing one where you want to use the webhook. 2. **Obtain the Webhook URL**: In the scenario editor, add a webhook as a trigger or an action (depending on your workflow). Once you configure the webhook, make.com will provide you with a unique webhook URL. 3. **Copy the Webhook URL**: Click to copy the webhook URL provided by make.com. 4. **Paste into VAPI Server URL Field**: Go to your VAPI application settings where you need to enter the Server URL. Paste the webhook URL you copied from make.com into the Server URL field. 5. **Save Changes**: Save any changes you've made to your VAPI application settings to ensure the webhook URL is updated. Now, when the make.com scenario is triggered, it will send data to the webhook URL, which corresponds to your VAPI application. Your VAPI application should be set up to handle incoming requests at this URL and process them accordingly. If you encounter any issues or need further assistance, please reach out to the support teams of VAPI or make.com for more detailed help.
s
@beta kostík please check this video it will clear all your doubs

https://youtu.be/4fLe3sRH_uI

if still have any do let me know
b
thanks
I made mistake in response webhook
6 Views