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

Twilio Studio API and updating the function_sid between accounts

When using the new Studio API to import and export Studio flow JSON everything transfers correctly, however when importing from another account there are issues translating functions. The service and environment sid can be replaced for the entire…
AhDev
  • 486
  • 11
  • 16
0
votes
1 answer

Is there any way to receive Whatsapp messages without exposing app to the Internet (webhooks)?

I've been checking the documentation about WhatsApp Business API and Twilio Sandbox for Whatsapp and the only way I see to receive messages configuring URL for my application endpoints. The thing is management and sec won't approve publishing an…
0
votes
0 answers

Twilio Say "Call is being recorded" for the person caller and after the customer picks up

I have it currently set up where if a twilio number is called, the call will be recorded and the person that dialed the number will hear "This call may be recorded for quality assurance purposes" before hearing any ringing. The response for the hook…
Steven T
  • 83
  • 9
0
votes
1 answer

Remove a cell number from the Twilio unsubscribe list

I have a very simple alert mechanism to alert drivers "in-the-field" when a new pickup has been assigned to them. I have had an instance twice where a driver has responded with a STOP and became un-subscribed. Once discovered we acquired the proper…
0
votes
1 answer

Twilio error-90100 : Invalid Autopilot Actions JSON

I referred to the Twilio blog published by Mwangi Kabiru: https://www.twilio.com/blog/serverless-whatsapp-chatbot-python-google-cloud-functions-twilio I made the necessary changes to the code to extract Google Sheets data from Google Drive and send…
0
votes
1 answer

Check if the Messaging Active Configuration is configured through API

is there any way to check if a phone number's Messaging Active Configuration is configured or not, through the API? Thank you!
jruivo
  • 447
  • 1
  • 8
  • 22
0
votes
2 answers

How to get Flow SID in callback function

I'm trying to understand how to get Flow SID in a callback function. I created a small server with a flask (python). Also, I assigned ngrok URL of my server in setting the phone to "CALL STATUS CHANGES". And I start studio flow where I set one…
0
votes
1 answer

Getting /Accounts/['ACCOUNT_SID]/Messages.json not found error while working with Twilio

I searched for similar issues but couldn't find a satisfying answer. Here's the python snippet that I am using to send messages from my Twilio verified number to my registered mobile number: account_sid =…
0
votes
2 answers

outbound call with ruby twilio

This is my current code. I do not understand how to make twilio call from "FROM" number first and then once connected, to call the "TO" number. Any suggestions? # set up a client to talk to the Twilio REST API @client =…
user2012677
  • 5,465
  • 6
  • 51
  • 113
0
votes
1 answer

Twilio authentication with access token

curl -X "GET" "https://chat.twilio.com/v2/Services/ISXXXXX/Channels/CHXXXXX/Messages" \ -H 'Content-Type: application/x-www-form-urlencoded' \ -H 'Authorization: Bearer ACCESS_TOKEN' \ I am trying to fetch Twilio chat messages as above but, I am…
maskapsiz
  • 244
  • 5
  • 23
0
votes
1 answer

Lookup Twilio Docs Example is not working. Returning a 404?

I'm attempting to use the Twilio Lookup service, purely the validate and format numbers into international format (even without having the original country code) This is the Twilio example, with a slight modification, seen in their docs: …
MattHodson
  • 736
  • 7
  • 22
0
votes
1 answer

Twilio call hold is not working as expected

I am using Twilio to call my customers from my Twilio client and want to put the user on hold whenever is needed. For that i am calling RESTAPI whenever user clicks on the "Hold" Button. But after calling the method call is getting disconnected for…
0
votes
2 answers

how to send excel file by using twilio in C#

below is my code to send Excel file TwilioClient.Init(AccountSid, AuthToken); var mediaUrl = new List(); if (!string.IsNullOrEmpty(UriString)) { mediaUrl = new[] { new…
0
votes
2 answers

Twilio how to manage local phone numbers through api

I am trying to move my account off of using local numbers and onto toll free numbers. I would like to get a list of all my local numbers. The incoming_phone_numbers api does not seem to return the Type attribute which tells me local vs toll free. I…
0
votes
1 answer

Capturing Twilio's outgoing call status on google appscript

I am trying to get the status of my outgoing twilio calls and update them onto the spreadsheet. "Completed, Busy, No-Answer, Cancelled, Failed". However, I do not know where to include the StatusCallBackEvent and how to access the retrieved status…
guddaae2u
  • 23
  • 5
1 2 3
99
100