David72
David72

Reputation: 39

Inbound Twllio SMS to trigger LogicApp

Unfortunately Twilio does not have an inbound action trigger in Azure Logic App. Using TwiLM , is this possible to trigger the Logic App when receiving a txt ?

Thanks David

Upvotes: 0

Views: 142

Answers (1)

George Chen
George Chen

Reputation: 14334

The logic app doesn't provide the Twilio trigger, so couldn't implement it directly.

However Twilio has a feature under the Phone Numbers. In the messaging, it could configure the Twilio Phone Number to use a Webhook when a message comes in to call the endpoint with an Http Post. And with this you could set a HTTP trigger logic app, and set the Twilio endpoint with the Logic app url.

enter image description here

Further more information, you could refer to this blog:Triggering an Azure Logic App by SMS messages with Twilio.

Upvotes: 1

Related Questions