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

How to change the default code lenght OTP message sent by twilio verify

I am using Twillio API in my node application (API) to send users an OTP, when they try to login through their mobile number. It's fine, but the code lenght is six numbers anf I want to create a code of five o four numbers. My questions is Can I…
Izlia
  • 235
  • 1
  • 2
  • 18
0
votes
1 answer

Twilio Voice - Client to client calls fail

Whenever a call is placed on the phone app from a client to another client, the call ends with an error and the Twilio console shows the dialed out client number as being converted to numbers instead of client:name. For example: client:adam.weissert…
0
votes
1 answer

Twilio API to access WhatsApp Templates?

I am writing a Hubspot application which will use Twilio to send WhatsApp messages from workflows. Because we are initiating the conversation we must use a template. I would like to provide the user in Hubspot a choice of templates to use. To do…
Robert
  • 1
0
votes
1 answer

how to associate phone number to a callback task in twilio

I was able to create a callback task but its not associating the phone number with it which in turn doesnt show the callback button in twilio flex panel. here is the api used: https://taskrouter.twilio.com/v1/Workspaces/workspaceId/Tasks here is the…
SO-user
  • 1,458
  • 2
  • 21
  • 43
0
votes
1 answer

How to determine if a Twilio phone number requires a Regulatory Bundle using REST API?

While working with Twilio's Regulatory Compliance API, I discovered that it is not possible to determine the "type" of a phone number (local, toll-free, national) after a user purchases the phone number. This property does not seem to be exposed on…
Jordan Lewallen
  • 1,681
  • 19
  • 54
0
votes
1 answer

SSL problems using Twilio

I'm trying to use Twilio to send SMS. I'm using their templates to send my first test message: import os from twilio.rest import Client client = Client(my_SID, my_TOKEN) message = client.messages \ .create( …
0
votes
1 answer

Twilio Whatsapp API Sticker Support

Hey, Y'all Im Trying to write an Whatsapp bot, which automatically will collect Stickers, send to the bot. I wrote a simple piece of Code to anlyse each received message. from flask import Flask, request from dotenv import load_dotenv from…
Levi
  • 11
  • 2
0
votes
1 answer

Send URLs via SMS through Twilio-Rails

Working on a Rails project that needs to send a link to a record to someone via SMS. /services/twilio_client.rb: def send_text(job, message) client = Twilio::REST::Client.new account_sid, auth_token client.messages.create( to:…
PSCampbell
  • 858
  • 9
  • 27
0
votes
1 answer

Does a Twilio Messaging Service prevent "snowshoe messaging" when sending a bulk text?

I've been reading up on the Twilio documentation regarding text queue limits for long code numbers (14,400 segments max for 1 MPS). The docs suggest adding more numbers to a Messaging Service to load balance many requests. However, I also read in…
Jordan Lewallen
  • 1,681
  • 19
  • 54
0
votes
1 answer

Text with URL showing as delivered, but message not received - Twilio

I'm working on an application that can automatically send out texts to members via Twilio. I need to include a URL in the message body, however, while the Twilio logs are showing the message as either 'sent' or 'delivered', I have not received the…
Sal
  • 1,471
  • 2
  • 15
  • 36
0
votes
0 answers

Twilio Call Error: Temporary unavailable (Mobile SDK) while registering in custom application

We tried the official demo of VoIP calling in iOS(link) in the following ways and checked the results: Using static token generated for device-specific identity. Device A: application in one client device. Device B: application in another client…
rafi
  • 364
  • 3
  • 9
0
votes
1 answer

Twilio Conversation API get conversation user data AND conversation data

I am trying to create a "conversation history" page on my app, where you see the "participant's" name and the last message of the conversation (see attached image). I understand the image would have to come from another database. I have most…
IWI
  • 1,528
  • 4
  • 27
  • 47
0
votes
1 answer

how can call rails service in vue

I just want to call the twilio serivce on < a > tag when click on verify number service should be call and check if number is valid then proceed next otherwise show error but i don't know how can i do this. service/twilio.rb def call(number,…
0
votes
1 answer

Twilio programmable voice softphone?

we are in early stage review of Twilio and have a bit of a snag. The examples show something like this string accountSid = mySid; string authToken = myToken; TwilioClient.Init(accountSid, authToken); var call =…
0
votes
1 answer

Credentials are required php twilio

I'm trying to use Twilio's API to send a sms with PHP. I followed the tutorial as it is presented on their website but it doesn't work. I correctly replaced the $sid, $token, "from number" and "to number" variables. I also tested it with Phyton and…