Azure logic apps is a cloud service that helps you to define your works flows, schedule tasks etc in the cloud. It is server less and fully managed IPAAS (Integration Platform as Service) with inbuilt scalability.
Logic apps provides a visual designer for create and configure your work flows. You can define your work flow with in-built connectors or other enterprise connectors.
Advantages of Logic app
- Inbuilt Connectors: We have plenty of inbuilt connectors, triggers and actions that cover many of the common business scenarios.
- Templates: Logic apps comes with many predefined templates that are available for common business cases which reduces the development work.
- Integration: You can integrate your on-premise legacy systems with the new ones in the cloud.
- Extensibility: You can create your own custom APIs, Azure Functions and integrate them to the workflow, if the inbuilt connectors are not met your needs.
- Minimal Development Effort: We can create the logic apps with minimal development effort in browser or visual studio.
Logic app for sending an SMS
Azure logic apps offers a pre-built Twilio connector which can allow you to send, get or list SMS / MMS from your Twilio account. In this post I will demonstrate how to use the logic app to Send an SMS using Twilio connector.
Prerequisites:
- Azure subscription
- Twilio AccountId and Authentication token
- A Twilio number / Twilio verified number to send SMS
{ "sendingNumber": "xxxxxxxxx", "destinationNumber": "xxxxxxxxx", "messageContent": "message from logic app", "statusCallBackURL": "https://hookb.in/yDRKx6el2xFJNNPaR2kk" }
{ "type": "object", "properties": { "sendingNumber": { "type": "string" }, "destinationNumber": { "type": "string" }, "messageContent": { "type": "string" }, "statusCallBackURL": { "type": "string" } } }
0 comments:
Post a Comment