i am using twilio messaging service in my webapp. Here, each phone number have its own messaging service. I want to associate all phone numbers to 1 messaging service. Is it possible to send and receive messages on each phone number using 1 messaging service?
Asked
Active
Viewed 141 times
1 Answers
2
Twilio developer evangelist here.
According to this article:
A Twilio Messaging Service can contain up to 400 Twilio message senders by default, including phone numbers, short codes, Alpha Sender ID, and WhatsApp senders.
And if you need more, you can contact support.

philnash
- 70,667
- 10
- 60
- 88
-
How can i send and receive message on each phone number using this messaging service? – usman raza Feb 14 '22 at 07:30
-
You can send an SMS message with a number by using it directly in the `from` parameter when [calling the REST API](https://www.twilio.com/docs/voice/api/call-resource?#create-a-call-resource). Or, you can pass the messaging service Sid instead and the messaging service will choose which number to use to send the message. When replying to incoming messages, you set a webhook URL in the messaging service and respond with TwiML and the number that received the incoming message will make the response. Is that what you're looking for? – philnash Feb 14 '22 at 11:50
-
yeah, got it. Thanku @philnash – usman raza Feb 14 '22 at 12:05
-
Recently, you can tell the messaging service to use the webook assigned to the individual number as well, which may best fit your needs, https://www.twilio.com/changelog/messaging-services-defer-to-senders-webhook-option-now-available – Alan Feb 14 '22 at 12:26
-
1Ah, TIL! Thanks @Alan – philnash Feb 14 '22 at 12:33