ASh - Stoneink
11/11/2024, 4:31 AMVapi
11/11/2024, 4:34 AMVapi
11/11/2024, 4:34 AMassistantOverrides
. In your API request, you've set the variable fullname
to "John Smith", but in the assistant's message, it's using {{Fullname}}
with an uppercase 'F'.
Variable names are case-sensitive, so you'll need to ensure that they match exactly. To fix this issue, you can either update the assistant's message template to use {{fullname}}
with a lowercase 'f', or update the assistantOverrides
in your API request to use Fullname
with an uppercase 'F'.
Would you like to proceed with updating the assistant's message template or the API request?Vapi
11/11/2024, 4:34 AMASh - Stoneink
11/11/2024, 4:37 AMVapi
11/11/2024, 4:37 AMASh - Stoneink
11/11/2024, 4:38 AMVapi
11/11/2024, 4:38 AM{{fullname}}
) are correctly placed within the script.
3. **Check Variable Handling**: There should be a section or a feature within the dashboard that allows you to define and manage variables. Ensure that the variables you want to use are listed there and are properly connected to the script.
4. **Test the Assistant**: Use a testing feature if available to simulate a call and see if the assistant correctly replaces the variables with their values.
5. **Review Documentation**: Check the platform's documentation for any specific syntax or configuration requirements related to variable handling.
6. **Check for Updates**: Ensure that your assistant is using the latest version of the software or platform, as updates may affect how variables are handled.
7. **Contact Support**: If you've checked all the above and the issue persists, it may be best to contact the platform's support team for help. They can provide specific guidance based on the system you're using.
If you're unsure about any of these steps or if they don't seem to apply to your specific platform, please reach out to the support team for more detailed assistance. Would you like to know how to contact the support team for further help?ASh - Stoneink
11/11/2024, 4:42 AMVapi
11/11/2024, 4:42 AMASh - Stoneink
11/11/2024, 4:43 AMVapi
11/11/2024, 4:43 AMShubham Bajaj
11/11/2024, 12:32 PMASh - Stoneink
11/12/2024, 1:09 AMASh - Stoneink
11/12/2024, 2:49 AMShubham Bajaj
11/12/2024, 3:57 PMassistant
or `assistantId`'s settings and template variables, so instead pass a transient squad and inside it pass membersOverrides
to apply single set of varaibles to all of the assistant.Shubham Bajaj
11/12/2024, 4:00 PMASh - Stoneink
11/12/2024, 10:56 PMShubham Bajaj
11/13/2024, 7:43 AMcurl -X POST https://api.vapi.ai/call \
-H "Authorization: Bearer " \
-H "Content-Type: application/json" \
-d '{
"name": "CreateCallUsingSquad",
"squad": {
"members": [
{
"assistantId": "<insert-first-memeber-assistant-id-here>",
"assistantDestinations": [
{
"assistantName": "<insert-assistant-name-here>",
"message": "<insert-message-here>",
"description": "<insert-description-here>"
}
]
},
{
"assistantId": "<insert-second-memeber-assistant-id-here>",
"assistantDestinations": []
}
],
"membersOverrides": {
"variableValues": {
"key": "value"
}
}
},
"phoneNumberId": "<insert-phone-number-id-here>",
"customer": {
"numberE164CheckEnabled": false,
"number": "<insert-custom-number-here>"
}
}'
Shubham Bajaj
11/13/2024, 7:45 AMShubham Bajaj
11/16/2024, 3:36 PMASh - Stoneink
11/20/2024, 5:13 AMASh - Stoneink
11/20/2024, 5:30 AMASh - Stoneink
11/20/2024, 5:31 AMASh - Stoneink
11/20/2024, 5:32 AMShubham Bajaj
11/21/2024, 9:43 AMpipeline-error-eleven-labs-voice-disabled-by-owner
which means the voice used for the assistant call transfered isn't available for use because of this call got terminated. I will check about this with the team if it's an mistake or few voices are taken back.ASh - Stoneink
11/23/2024, 6:29 AM