Is it possible to RECEIVE SMS texts using Azure Communication Services Python SDK?

Viewed 27
1 Answers

ACS already supports receiving messages through Event Grid. In summary you need to register to the SMS Received event, and you should receive Event Grid events each time linked number receive a message.

For more information you can check SMS FAQ and our QuickStart sample here Quickstart: Handle SMS and delivery report events

When you set up the Event Grid you can configure it to forward the notification to a Web Hook for example and in this way, you can notify your application about the incoming message.

Related