I'll try to explain my requirement. I have 3 entities:
- Controller
- Caller-Recipient (Verified Number)
- Recipient
The end goal is to have Recipient
receive a call from Caller-Recipient
as caller-id, but Caller-Recipient
should not be the one that initiates it. The Controller
will initiate a call between Caller-Recipient
and Recipient
. Here's how I intend to do it.
- The
Controller
will call the Twilio-Number. - The TwiML will dial
Caller-Recipient
. - Once
Caller-Recipient
receives the call, it'll dialRecipient
and connect to the same call. - The call between
Caller-Recipient
andRecipient
convenes.
How can I achieve this?