ConnorN
04/23/2025, 7:43 PMconst start = async () => {
console.log("Starting call");
setCallStatus(CALL_STATUS.LOADING);
const agentId = "id-code";
const response = vapi.start(agentId);
response.then((res) => {
console.log("call", res);
});
};
How can I pass additional information when starting the call? besides just doing .start() with the ts websdk?