MAKE.com API / HTTP errors
# support
c
Hi, I am receiving various errors saying the API is rejecting properties that should be able to be included in my assistant. I am getting these errors in MAKE.com when calling via HTTP DataError Error: 400 Bad Request {"message":["assistant.property smartEndpointingplan should not exist","assistant.voicemailDetection.property backOffPlan should not exist"],"error":"Bad Request","statusCode":400} Origin HTTP @Sahil
s
can you send the complete CURL request?
v
It looks like the API is rejecting your request due to incorrect property names. Make sure you use the correct casing and structure. For example, use
smartEndpointingPlan
(not
smartEndpointingplan
) and
backoffPlan
(not
backOffPlan
). Here’s a minimal example of how these should look in your JSON:
Copy code
json
{
  "startSpeakingPlan": {
    "smartEndpointingPlan": { "provider": "vapi" }
  },
  "voicemailDetection": {
    "provider": "google",
    "backoffPlan": { "startAtSeconds": 1.1 }
  }
}
Update your payload accordingly and try again. Reference: [Vapi Changelog May 3, 2025](https://docs.vapi.ai/changelog/2025/5/3), [Speech Configuration](https://docs.vapi.ai/customization/speech-configuration) Sources: - [Vapi Changelog May 3, 2025](https://docs.vapi.ai/changelog/2025/5/3) - [Speech Configuration](https://docs.vapi.ai/customization/speech-configuration)
c
HI @Sahil is this what you need ( I recently took out the properties that were giving an error) :
also any tips for organizing or updating helps! the bot is saying the property names were incorrect
thank you
k
I sent you my Calendly link. Let's schedule a quick call to sort this out.
c
thank you I'll schedule
k
Please reach out to us if you have any other questions regarding this issue
2 Views