Azeem Shah
01/22/2025, 8:16 PM{
"provider": "twilio",
"server": {
"url": "https://*****************/",
"secret": "*****************",
"timeoutSeconds": 20
}
}
if i remove "provider": "twilio",
it will let me update but than I am not getting assistant-request to my serverVapi
01/22/2025, 8:19 PMprovider
field is not expected in the payload for the update API call, which is why you're encountering the error when it's included.
However, removing the provider
field should not affect the delivery of the assistant-request to your server as long as the server.url
and server.secret
are correctly updated. The provider
information is likely already associated with your phone number configuration on the VAPI platform.
To resolve this, please ensure that you are using the correct payload structure without the provider
field, like so:
json
{
"server": {
"url": "https://*****************/",
"secret": "*****************",
"timeoutSeconds": 20
}
}
If you update the server URL and secret with this payload and still face issues with receiving assistant-requests, there might be another issue at play. In that case, please check your server logs to ensure it's correctly configured to receive requests, and that there are no network or firewall issues preventing the connection.
If the problem persists, please ask support for more info on this.Vapi
01/22/2025, 8:19 PMShubham Bajaj
01/23/2025, 6:46 AMShubham Bajaj
01/23/2025, 6:48 AMA. Salem
01/23/2025, 2:17 PMShubham Bajaj
01/23/2025, 8:25 PMyac
01/26/2025, 1:04 AMShubham Bajaj
01/27/2025, 12:59 PM