Skip to content

Commit d65d196

Browse files
committed
image and no-code
1 parent e95d37c commit d65d196

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

articles/communication-services/how-tos/event-grid/local-testing-event-grid.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ngrok http 7071
3232

3333
1. Open Postman and create a new request.
3434

35-
![Screenshot of Postman body configuration](media/postman_body.png)
35+
![Screenshot of Postman body configuration](media/postman-body.png)
3636

3737
2. Select the `POST` method.
3838

@@ -68,10 +68,10 @@ ngrok http 7071
6868
- `Content-Type`: `application/json`
6969
- `aeg-event-type`: `Notification`
7070

71-
![Screenshot of Postman headers configuration](media/postman_header.png)
71+
![Screenshot of Postman headers configuration](media/postman-header.png)
7272

7373
6. Select the `Send` button to trigger the event.
7474

75-
![Screenshot of Postman send button](media/postman_send.png)
75+
![Screenshot of Postman send button](media/postman-send.png)
7676

7777
At this point, an event should trigger in your Azure Function. You can verify the event by looking at the execution of your Azure Function. You can then validate that the function is doing its job correctly.

articles/communication-services/quickstarts/sms/includes/receive-sms-no-code.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ Logic Apps and Power Automate provide out of the box connectors to help handle e
1919

2020
1. Start by creating a new flow in your preferred environment. Pick the `When a resource event occurs` trigger to get started.
2121

22-
![trigger pick](../media/receive-sms/trigger-pick.png)
22+
![Screenshot of trigger pick for Power Automate](../media/receive-sms/trigger-pick.png)
2323

2424
2. Now, lets configure it. The connector requires you to provide a subscription you want to use. (Should be the same subscription where your Azure Communication Services resource is). Specify the type of resource. In this case, choose `Microsoft.Communication.CommunicationServices`. Then you need to provide a resource name for the Azure Communication Services resource you want it to connect to. Finally, we need to pick the event types we want to receive, in this case: `Microsoft.Communication.SMSReceived`.
2525

26-
![Event Grid connector](../media/receive-sms/Event%20Grid%20Connector.png)
26+
![Screenshot of event grid connector](../media/receive-sms/event-grid-connector.png)
2727

2828
The connector automatically sets up the event subscription on your behalf and configures the events it wants to receive.
2929

@@ -85,19 +85,19 @@ Logic Apps and Power Automate provide out of the box connectors to help handle e
8585

8686
</details>
8787

88-
![parse sms json](../media/receive-sms/parse_json_sms.png)
88+
![Screenshot of Parse JSON connector](../media/receive-sms/parse-json-sms.png)
8989

90-
At this point, you've successfully handled the SMS event. You then have multiple options of what to do with it ranging from logging it to responding to it. In the context of this document, lets respond to it. Continue reading to learn the steps to achieve respond to the SMS.
90+
At this point, you've successfully handled the SMS event. You then have multiple options of what to do with it ranging from logging the event to responding to the SMS. In the context of this document, we will show how to respond to it. Continue reading to learn the steps to respond to the SMS.
9191

9292
## Responding to the SMS
9393

94-
1. Start by adding the SMS connector into our flow and configuring it with the information for our Azure Communication Services resource. This allows the connector to access the resource and send the SMS on our behalf. You need the `connection string` for your resource.
94+
1. Start by adding the SMS connector into our flow and configuring it with the information for our Azure Communication Services resource. It allows the connector to access the resource and send the SMS on our behalf. You need the `connection string` for your resource.
9595

96-
![set up of sms connector](../media/receive-sms/sms-connection.png)
96+
![Screenshot of set up screen for the SMS connector](../media/receive-sms/sms-connection.png)
9797

9898
2. Next, we configure the connector with the information for the sender and recipient. We use the information from the event we received to populate them. Fip the `to` and `from` numbers to send an SMS back to the original sender. Finally, add a message.
9999

100-
![sms configure](../media/receive-sms/sms-configure.png)
100+
![Screenshot of the SMS connector configuration](../media/receive-sms/sms-configure.png)
101101

102102
Now, you can save the flow and test it by sending an SMS to the phone number associated with your Azure Communication Services resource. You should receive back a text message.
103103

0 commit comments

Comments
 (0)