Closed shehzadraheem closed 3 months ago
Hi @shehzadraheem
This is absolutely achievable using the SDK and some TwiML tricks with a few steps:
alice
.alice
is mapped to a Twilio number 4150001234
.4150006789
or a client id bob
, which again can be mapped to a Twilio number.bob
is registered, your TwiML response should look like this:
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Dial callerId="4150001234">
<Client>bob</Client>
</Dial>
</Response>
When the call is received on client bob
's app, the user will see an incoming call from the Twilio number 4150001234
.
Let us know if this makes sense to you.
Hi @bobiechen-twilio Thanks for your reply.
I have already done this.
Actually, I want to perform this
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Dial callerId="4150001234">
<Number>4150006789</Number>
</Dial>
</Response>
If I run this, then ''https://demo.twilio.com/welcome/voice/'' this URL triggers (In Active Phone Numbers -> Configurations -> A call come in wehook). I did not get any call or notification on other phone.
How can I fix it?
If its not possible then in case of
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Dial callerId="4150001234">
<Client>bob</Client>
</Dial>
</Response>
How can I trigger my customize URL in this webhook (In Active Phone Numbers -> Configurations -> A call come in wehook).
Actually, I want to interrupt the voice call either it is between clientID-to-clientID, clientID-to-phoneNumber or phoneNumber-to-phoneNumber.
I want to add my audio track in live voice call stream.
@shehzadraheem I'm going to have to ask you to file a support ticket so that we can direct you to the right folks who can help. Unfortunately, your questions are outside the scope of this Github board, which is relegated to the client side SDK and getting started with the quickstart, things such as Twml configuration and other backend questions arn't this groups specialty and we may lead you astray.. Sorry we couldn't help more.
I have two Twilio phone numbers. I'm trying to call between these two numbers, but it's not working.
I want to build an app in which users will purchase Twilio phone numbers, and then they will call to each other using these phone numbers.
Is it possible to call between two Twilio phone numbers?