Skip to content

Commit 2c4aa55

Browse files
authored
Merge pull request #95325 from ecfan/relative
Fix relative path
2 parents 4767ada + ed221dc commit 2c4aa55

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

articles/logic-apps/logic-apps-http-endpoint.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ By default, the Request trigger expects an HTTP POST request. However, you can s
139139

140140
## Accept parameters in endpoint URL
141141

142-
When you want your endpoint URL to accept parameters, specify the relative path in your trigger. You must also explicitly [set the method](#set-method) that your HTTP request expects.
142+
When you want your endpoint URL to accept parameters, specify the relative path in your trigger. You also need to explicitly [set the method](#set-method) that your HTTP request expects.
143143

144144
1. In the Request trigger, open the **Add new parameter** list, and select **Relative path**, which adds this property to the trigger.
145145

@@ -174,7 +174,7 @@ When you want your endpoint URL to accept parameters, specify the relative path
174174
Your HTTP endpoint URL now includes the relative path, for example:
175175

176176
```http
177-
https://prod-25.westus.logic.azure.com/workflows/{logic-app-resource-ID}/triggers/manual/paths/invoke/address/postalCode?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig={shared-access-signature}
177+
https://prod-25.westus.logic.azure.com/workflows/{logic-app-resource-ID}/triggers/manual/paths/invoke/address/{postalCode}?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig={shared-access-signature}
178178
```
179179

180180
1. To test your HTTP endpoint, copy and paste the updated URL into another browser window, but replace `{postalCode}` with `123456`, and press Enter.
38 Bytes
Loading
4.14 KB
Loading
74 Bytes
Loading

0 commit comments

Comments
 (0)