Operations📟
12/26/2025, 3:46 PMChiranjeet Mishra
12/26/2025, 3:46 PMVapi Support Bot
12/26/2025, 3:48 PMjs
// Example: Store call state in memory (Node.js/Express)
const callMemory = {};
app.post('/track-attempt', (req, res) => {
const { callId, action, result } = req.body;
callMemory[callId] = callMemory[callId] || [];
callMemory[callId].push({ action, result, timestamp: Date.now() });
res.json({ status: 'ok' });
});
Call this endpoint from your Vapi assistant after each DTMF/menu attempt to keep track of the call's progress.
For more, see the [IVR Navigation documentation](https://docs.vapi.ai/ivr-navigation).
Source:
- [IVR Navigation documentation](https://docs.vapi.ai/ivr-navigation)Operations📟
12/26/2025, 3:58 PMOperations📟
12/26/2025, 4:03 PMOperations📟
12/31/2025, 4:07 PM