I am calling Vapi http endpoint to make an outbound call. I am passing certain variables to it under assistantOverrides.variableValues.
I have setup a function call with parameter as "mrn". I am expecting that when Vapi calls my webhook endpoint, it passes "mrn" parameter with value as "MRN12345" but its passing "John Doe" in "mrn". What am i doing wrong?
{
"customer":{
"number":"+1xxxxxxxx"
},
"assistantId":"xxxx",
"phoneNumberId":"xxxx",
"assistantOverrides":{
"variableValues":{
"current_date":"2025-05-16T10:14:23.644585",
"provider_name":"Dr. John Smith",
"department":"Cardiology",
"available_date":"2025-05-09T09:14:23.644585",
"patient_name":"John Doe",
"mrn":"MRN12345",
"call_session_id":"xxxx",
"current_appointment_id":"xxxx",
"available_appointment_id":"xxx"
}
}
}