0

I've checked the documentation and it explains how to retrieve call logs via API calls, but there does not seem to be a webhook available whenever a log is created :')

Is there an easy way to get notified whenever twilio creates a log for any number?

1 Answers1

4

Twilio doesn't have webhooks that are fired on the creation of call logs.

You could however utilise the incoming call & status callback webhooks on phone numbers within the account to determine when specific actions are fired and begin any actions needed.

  • 1
    Alternatively, and depending on your use case, perhaps a cron job is more suitable here to scan the call logs and intervals and extract any new data found. – Tristan Blackwell Aug 01 '22 at 13:22
  • 1
    Another option that may be of interest is Event Streams, but not exactly the CDRs you are looking for (is is that droid?) - https://www.twilio.com/docs/voice/insights/event-streams#voice-insights-events – Alan Aug 01 '22 at 13:47
  • Ah I was not aware of the event streams! Not precisely what I'm looking for, but it's great to know, thank you @Alan! :) – Andre Wruszczak Aug 02 '22 at 08:00