` const start = async () => { console.log("St...
# general-english
c
Copy code
const 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?
3 Views