Noah Vandal
02/19/2025, 9:35 PMKyle Brunker
02/20/2025, 9:43 PMconst createWebCall = async (config: CreateWebCallDTO) => {
const response = await fetch('https://api.vapi.ai/call/web', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer YOUR_API_KEY'
},
body: JSON.stringify(config)
});
return response.json();
};
Let me know if you require further help.Noah Vandal
02/21/2025, 3:27 PMNoah Vandal
02/21/2025, 3:29 PMKyle Brunker
02/22/2025, 6:23 PM