In calllog, 'customer phone number' colum has i/c number, how to get this number to pass to webhook
In call_log, 'customer phone number' colum has incoming calling number, how to get this number to pass to webhook url as query parameter
⤵️ Mention @Vapi Support Bot for follow-ups 🐥
const phoneNumber = req.body.call.from.phoneNumber;
const webhookUrl = `https://your-webhook.com/endpoint?customer_number=${encodeURIComponent(phoneNumber)}`;
// Now you can use webhookUrl to make your request