Google sheet checking during call
Can I do this during call it will check my Google sheet that nextcalldate and meeting date exist or not and when call it already know my number and name
⤵️ Mention @Vapi Support Bot for follow-ups 🐥

tool-calls webhook. Error: Request failed with status code 404tool-calls// Pseudocode for a custom tool
POST /check-dates
{ "phone": "{{customerPhone}}", "name": "{{customerName}}" }{
"type": "google.sheets.row.append",
"spreadsheetId": "YOUR_SPREADSHEET_ID",
"range": "Sheet1",
"values": ["{{callerName}}", "{{callerNumber}}", "{{nextcalldate}}", "{{meetingdate}}"]
}{
"type": "apiRequest",
"name": "checkBooking",
"url": "https://your-backend.com/check-booking",
"method": "POST",
"body": { "phone": "{{callerNumber}}", "date": "{{meetingdate}}" }
}{
"type": "apiRequest",
"name": "checkBooking",
"url": "https://your-backend.com/check-booking",
"method": "POST",
"body": { "phone": "{{callerNumber}}", "date": "{{meetingdate}}" }
}