Zath
Zath

Reputation: 353

How to retrieve 'Digits' parameter from call log?

In the twilio web interface, when I look at a specific call, I can see all the associated requests under the request inspector. Is there any way to retrieve this data via the REST API?

Specifically, I'm trying to retrieve the 'Digits' parameter to see what a caller dialed in response to a <gather>

Upvotes: 0

Views: 160

Answers (1)

Devin Rader
Devin Rader

Reputation: 10366

Twilio evangelist here.

There is currently no way to download the entire HTTP request/response using the API. This is something you would have to log yourself as the call is occuring. If you save the call sid at the same time as the Digits, that would allow you to tie those digits back to a specific call.

Hope that helps.

Upvotes: 1

Related Questions