-3

Hi guys. I am not understanding how to set up a call/sms forwarding and recording. I have tried whit flows. I can see the inbound call, but there is no forwarding and no recording. I am trying to forward to a +972 phone number, could this be a problem?

**My goal is simple - I wish the call be immediately recorded and forwarded. Same goes for SMS. Nothing complicated. ** Thanks.

tried setting up bins and flows. Nothing seemed to work.

3
  • I don't think you can record a forwarded call. You'd need to conference the two together, I think: twilio.com/docs/voice/twiml/conference
    – ceejayoz
    Commented Jul 19, 2023 at 17:54
  • I have 0 coding skills.. Would it be too much to ask the code from you?
    – Tamir Perl
    Commented Jul 19, 2023 at 18:10
  • It would be too much to ask, yes. You may want to hire someone to implement this for you.
    – ceejayoz
    Commented Jul 19, 2023 at 18:12

1 Answer 1

1

You can record an inbound call or an outbound call using the Dial verb with a record attribute in a Twiml Bins (zero coding required) or by following this Twilio Studio walk-through (zero coding required).

Here is the Twiml to record a call:

<?xml version="1.0" encoding="UTF-8"?>
<Response>
    <Dial record="record-from-ringing">
        <Number>+15558675310</Number>
    </Dial>
</Response>

If for some reason you cannot record or forward a call it could be due to a limitation with a free/trial plan.

Twilio also makes this resource available "Legal Considerations with Recording Voice and Video Communications".

2
  • Awesome thank you so much. And what would the SMS forwarding code be?
    – Tamir Perl
    Commented Jul 20, 2023 at 4:40
  • For SMS, it is similar. This page has a tutorial showing how to use Twiml Bins and Twilio Studio: support.twilio.com/hc/en-us/articles/….
    – jassent
    Commented Jul 21, 2023 at 9:52

Not the answer you're looking for? Browse other questions tagged or ask your own question.