Rehan
04/08/2025, 5:51 PMRehan
04/08/2025, 5:53 PMVapi Support Bot
04/08/2025, 5:53 PMtoolCallId
and result
fields
- A mismatch in the toolCallId
will prevent Vapi from associating the response with the correct tool call
- Check that the data structure being sent from Vapi matches what your webhook expects
### 3. Configure Prospect Details Properly
To receive prospect details via webhook:
javascript
vapiInstance = vapiSDK.run({
apiKey: apiKey,
assistant: assistant,
config: buttonConfig,
assistantOverrides: {
variableValues: {
// Your prospect details here
name: "ProspectName"
}
}
});
According to [webhook configuration documentation](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1339495894801711186), using assistantOverrides
with variableValues
is the proper way to pass prospect details.Vapi Support Bot
04/08/2025, 5:53 PMKyle Brunker
04/08/2025, 8:26 PMRehan
04/09/2025, 12:04 PMRehan
04/10/2025, 11:16 AMKyle Brunker
04/11/2025, 12:01 AM