How do I change/test custom parameters like "firstmessagemode"
There is no option in the vapi dashboard to change some of these custom parameters. How do I do this? Will I need to use another platform?
https://api.vapi.net/make_call with the actual endpoint URL, YOUR_API_TOKEN with your actual API token, and the phone numbers with the actual numbers you wish to use. The firstMessageMode parameter would be set to the mode you want to use for the call.Content-Type: Set this to application/json.Authorization: If your VAPI requires authentication, set this to Bearer YOUR_API_TOKEN, replacing YOUR_API_TOKEN with your actual API token.assistant.modelOutputInMessagesEnabled parameter seems to be a setting related to the configuration of an assistant or chatbot, possibly within a Voice API (VAPI) or a similar service. While this specific parameter is not a standard or commonly recognized setting, based on its name, I can infer its possible functionality:assistant: This likely refers to the chatbot or virtual assistant instance.modelOutputInMessages: This suggests that the setting controls whether the output generated by the underlying model (such as AI or machine learning model) is included in the messages.Enabled: This indicates that the setting can be toggled on or off.assistant.modelOutputInMessagesEnabled could be a configuration setting that, when enabled, allows the output from the assistant's AI model to be included in the messages sent to the user. This might be used for debugging purposes or to provide transparency about how the assistant is generating its responses.
assistant.model.messages at call start, call.messages at squad transfer points).https://api.vapi.net/make_callYOUR_API_TOKENYOUR_API_TOKENfirstMessageModeBearer YOUR_API_TOKENassistant.modelOutputInMessagesEnabledassistant.modelOutputInMessagesEnabledmodelOutputInMessagesEnabledassistant.model.messagescall.messagescurl -X POST https://api.vapi.net/make_call \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-d '{
"to": "+1234567890",
"from": "+0987654321",
"firstMessageMode": "YOUR_DESIRED_MODE"
}'