Skip to content

Commit 918d4d7

Browse files
author
ecfan
committed
More updates
1 parent 47b5039 commit 918d4d7

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

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

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,17 @@ When you want to accept parameter values through the endpoint's URL, you have th
399399

400400
`https://mystandardlogicapp.azurewebsites.net/api/Stateful-Workflow/triggers/When_a_HTTP_request_is_received/invoke/address/%7BpostalCode%7D?api-version=2022-05-01&sp=%2Ftriggers%2FWhen_a_HTTP_request_is_received%2Frun&sv=1.0&sig={shared-access-signature}`
401401

402+
1. To test your callable endpoint, copy the updated callback URL from the Request trigger, paste the URL into another browser window, replace `%7BpostalCode%7D` in the URL with `123456`, and press Enter.
403+
404+
The browser returns a response with this text: `Postal Code: 123456`
405+
406+
![Screenshot shows browser with Standard workflow response from request to callback URL.](./media/logic-apps-http-endpoint/browser-response-callback-url-standard.png)
407+
408+
> [!NOTE]
409+
>
410+
> If you want to include the hash or pound symbol (**#**) in the URI,
411+
> use this encoded version instead: `%25%23`
412+
402413
### [Consumption](#tab/consumption)
403414

404415
1. In the Request trigger, open the **Add new parameter** list, and select **Relative path**, which adds this property to the trigger.
@@ -433,19 +444,19 @@ When you want to accept parameter values through the endpoint's URL, you have th
433444

434445
`https://prod-07.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}`
435446

436-
---
437-
438-
To test your callable endpoint, copy the updated callback URL from the Request trigger, paste the URL into another browser window, replace `{postalCode}` in the URL with `123456`, and press Enter.
447+
1. To test your callable endpoint, copy the updated callback URL from the Request trigger, paste the URL into another browser window, replace `{postalCode}` in the URL with `123456`, and press Enter.
439448

440449
The browser returns a response with this text: `Postal Code: 123456`
441450

442-
![Screenshot shows browser and response from sending request to callback URL.](./media/logic-apps-http-endpoint/callback-url-returned-response.png)
451+
![Screenshot shows browser with Consumption workflow response from request to callback URL.](./media/logic-apps-http-endpoint/browser-response-callback-url-consumption.png)
443452

444453
> [!NOTE]
445454
>
446455
> If you want to include the hash or pound symbol (**#**) in the URI,
447456
> use this encoded version instead: `%25%23`
448457

458+
---
459+
449460
## Call workflow through endpoint URL
450461

451462
After you create the endpoint, you can trigger the workflow by sending an HTTPS request to the endpoint's full URL. Azure Logic Apps workflows have built-in support for direct-access endpoints.

0 commit comments

Comments
 (0)