Questions tagged [twilio-api]

Twilio provides a bunch of APIs for services like Chat, Voice, SMS, Fax. Any issues or problem faced related to those APIs, this tag will be used.

The Twilio REST API allows you to develop Chat applications, Applications with SMS, Fax and Voice capabilities. There are separate micro-services (REST API group) and SDKs hosted on twilio site and any issues related to the API and SDK can be tagged using this Tag.

2398 questions
0
votes
1 answer

Use collected digits from Call as a parameters of a Twilio Function or Value of Environment Variable

Brand new to Twilio. I've implemented the Build Voice Mail with SMS and Email Notifications Using Twilio Studio, Functions, and SendGrid tutorial. This tutorial relies on an Environment Variable named TO_EMAIL_ADDRESS to hold a static email address…
flabbergasted
  • 341
  • 3
  • 6
0
votes
0 answers

converting 8khz to 16khz python libaries/methods

I have to upsample 8khz telephony audio to 16khz. Until now I'm using this code/very simple transformation : from scipy import signal input_rate = 8000 wished_rate = 16000 audio_array = np.fromstring(string=string_of_bytes,…
busy
  • 23
  • 3
0
votes
1 answer

Updating all active twilio Flow to ended error

So I want to run this pythong script to end all active Flows currently executing executions = client.studio \ .v1 \ .flows('FWXXXXXX') \ .executions \ .list(limit=20) for record in executions: if…
anupamb
  • 37
  • 8
0
votes
1 answer

Webhook not valid after in Twilio

I am trying to test a workflow in twilio, the workflow is like this: A call comes in and my server gets hit by twilio, the request is valid per the docs The webhook returns a Twiml with a Redirect to another endpoint in order to enqueue the…
james_bond
  • 6,778
  • 3
  • 28
  • 34
0
votes
1 answer

Transforming Twilio library request into Guzzle request

unfortunately our project runs on PHP 7.0 and we cannot upgrade it for now. And Twilio's library uses PHP 7.2+ on the version that contains the trusthub API support. So I'm trying to do the request "Create EndUser of type:…
Brayan
  • 460
  • 2
  • 5
  • 17
0
votes
1 answer

JS Outbound Video Call with Twilio WebRTC Go

Is it possible to make 1:1 outbound video calls with Twilio? If yes can anyone showcase a simple js example doing that?
dan_0
  • 599
  • 1
  • 5
  • 17
0
votes
2 answers

Twilio send sms with nodejs not sending message

I am using twilio to send sms using nodejs, but sometimes it not working, not going to catch or not going to then, above it calling, client also created but create not working. const accountSid = globals.twilioAccountSid; const authToken =…
Sahil
  • 7
  • 4
0
votes
1 answer

How do you access the information gathered on a Twilio phone call?

I have the following code:
ctk
  • 11
  • 1
0
votes
1 answer

How to post data to a sms server (if there is no internet) and then send back from the Sms server to the web server?

i'm building a mobile application that needs to send critical data to a remote database but it may have networks issue in some user's location. I want to know if it's possible wrap up the data in text message and then send a sms server and allow the…
0
votes
1 answer

Tag by Chargeback or Costcenter

I am using C# .NET 6 (Core version) I have multiple customer for my app that uses Twilio for sending SMS. Is there a way to tag by CustomerID for each SMS sent so that I can chargeback to customer based on usage ?
NSS
  • 1,835
  • 2
  • 29
  • 66
0
votes
1 answer

What is the best way to record voice calls on Twilio Proxy Service?

My problem is, we need to record proxy service calls on twillio, and between the 5 possible ways of recording a call, the only one i see as doable, is the in-progress call recording. The proxy server has 3 webhooks, one of them is the CALLBACK URL.…
juanoude
  • 5
  • 2
0
votes
1 answer

Is it possible to receive a message from a webchat (on a website) and forward this message to Whatsapp using Twilio?

I'm looking into the Twilio Whatsapp API docs, and cannot find anywhere if it is possible to receive a message sent from a website webchat on a Whatsapp Business Account? I would like to develop the following: a user is on my website, and has a…
Diorcula
  • 105
  • 2
  • 12
0
votes
2 answers

Twilio: how to add name to media while sending message?

I'm using npm module https://www.npmjs.com/package/@twilio/conversations I'm sending media with below code: props.conversationProxy.sendMessage({ contentType: event.target.files.files[0].type, filename:event.target.files.files[0].name, media:…
Prashant Patil
  • 2,463
  • 1
  • 15
  • 33
0
votes
1 answer

Twilio Outbound SMS Message Not Delivered

I'm using the following code to send an outbound SMS message from Twilio: from twilio.rest import Client account_sid = '' auth_token = '' client = Client(account_sid, auth_token) message = client.messages.create(to='
Hamza
  • 741
  • 1
  • 6
  • 12