You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/connectors/connectors-native-reqres.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -463,7 +463,9 @@ When you use the Request trigger to receive inbound requests, you can model the
463
463
464
464
## Test your workflow
465
465
466
-
To test your workflow, send an HTTP request to the generated URL. For example, you can use a tool such as [Postman](https://www.getpostman.com/) to send the HTTP request. For more information about the trigger's underlying JSON definition and how to call this trigger, see these topics, [Request trigger type](../logic-apps/logic-apps-workflow-actions-triggers.md#request-trigger) and [Call, trigger, or nest workflows with HTTP endpoints in Azure Logic Apps](../logic-apps/logic-apps-http-endpoint.md).
466
+
To test your workflow, send an HTTP request to the generated URL. For example, you can use local tools or apps such as [Insomnia](https://insomnia.rest/) or [Bruno](https://www.usebruno.com/) to send the HTTP request.
467
+
468
+
For more information about the trigger's underlying JSON definition and how to call this trigger, see these topics, [Request trigger type](../logic-apps/logic-apps-workflow-actions-triggers.md#request-trigger) and [Call, trigger, or nest workflows with HTTP endpoints in Azure Logic Apps](../logic-apps/logic-apps-http-endpoint.md).
Copy file name to clipboardExpand all lines: articles/logic-apps/create-single-tenant-workflows-azure-portal.md
+7-24Lines changed: 7 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ In single-tenant Azure Logic Apps, workflows in the same logic app resource and
55
55
56
56
If you don't have an Office 365 account, you can use [any other available email connector](/connectors/connector-reference/connector-reference-logicapps-connectors) that can send messages from your email account, for example, Outlook.com. If you use a different email connector, you can still follow the example, and the general overall steps are the same. However, your options might differ in some ways. For example, if you use the Outlook.com connector, use your personal Microsoft account instead to sign in.
57
57
58
-
* To test the example workflow in this guide, you need a tool that can send calls to the endpoint created by the Request trigger. If you don't have such a tool, you can download, install, and use [Postman](https://www.postman.com/downloads/).
58
+
* To test the example workflow in this guide, you need a local tool or app that can send calls to the endpoint created by the Request trigger. For example, you can use local tools such as [Insomnia](https://insomnia.rest/) or [Bruno](https://www.usebruno.com/) to send the HTTP request.
59
59
60
60
* If you create your logic app resource and enable [Application Insights](../azure-monitor/app/app-insights-overview.md), you can optionally enable diagnostics logging and tracing for your logic app. You can do so either when you create your logic app or after deployment. You need to have an Application Insights instance, but you can create this resource either [in advance](../azure-monitor/app/create-workspace-resource.md), when you create your logic app, or after deployment.
61
61
@@ -328,40 +328,23 @@ In this example, the workflow runs when the Request trigger receives an inbound
> You can also find the endpoint URL on your logic app's **Overview** pane in the **Workflow URL** property.
332
333
>
333
334
> 1. On the resource menu, select **Overview**.
334
335
> 1. On the **Overview** pane, find the **Workflow URL** property.
335
336
> 1. To copy the endpoint URL, move your pointer over the end of the endpoint URL text,
336
337
> and select **Copy to clipboard** (copy file icon).
337
338
338
-
1. To test the URL by sending a request, open [Postman](https://www.postman.com/downloads/) or your preferred tool for creating and sending requests.
339
-
340
-
This example continues by using Postman. For more information, see [Postman Getting Started](https://learning.postman.com/docs/getting-started/introduction/).
341
-
342
-
1. On the Postman toolbar, select **New**.
343
-
344
-

345
-
346
-
1. On the **Create New** pane, under **Building Blocks**, select **Request**.
347
-
348
-
1. In the **Save Request** window, under **Request name**, provide a name for the request, for example, **Test workflow trigger**.
349
-
350
-
1. Under **Select a collection or folder to save to**, select **Create Collection**.
351
-
352
-
1. Under **All Collections**, provide a name for the collection to create for organizing your requests, press Enter, and select **Save to <*collection-name*>**. This example uses **Logic Apps requests** as the collection name.
353
-
354
-
In the Postman app, the request pane opens so that you can send a request to the endpoint URL for the Request trigger.
355
-
356
-

339
+
1. To test the URL by sending a request and triggering the workflow, open your preferred tool or app, and follow their instructions for creating and sending HTTP requests.
357
340
358
-
1. On the request pane, in the address box that's next to the method list, which currently shows **GET**as the default request method, paste the URL that you previously copied, and select **Send**.
341
+
For this example, use the **GET** method with the copied URL, which looks like the following sample:
359
342
360
-

Copy file name to clipboardExpand all lines: articles/logic-apps/create-single-tenant-workflows-visual-studio-code.md
+7-25Lines changed: 7 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -227,7 +227,7 @@ As you progress, you'll complete these high-level tasks:
227
227
228
228
1. To locally run webhook-based triggers and actions, such as the [built-in HTTP Webhook trigger](../connectors/connectors-native-webhook.md), in Visual Studio Code, you need to [set up forwarding for the callback URL](#webhook-setup).
229
229
230
-
1. To test the example workflow in this article, you need a tool that can send calls to the endpoint created by the Request trigger. If you don't have such a tool, you can download, install, and use the [Postman](https://www.postman.com/downloads/) app.
230
+
1. To test the example workflow in this guide, you need a local tool or app that can send calls to the endpoint created by the Request trigger. For example, you can use local tools such as [Insomnia](https://insomnia.rest/) or [Bruno](https://www.usebruno.com/) to send the HTTP request.
231
231
232
232
1. If you create your logic app resources with settings that support using [Application Insights](../azure-monitor/app/app-insights-overview.md), you can optionally enable diagnostics logging and tracing for your logic app resource. You can do so either when you create your logic app or after deployment. You need to have an Application Insights instance, but you can create this resource either [in advance](../azure-monitor/app/create-workspace-resource.md), when you create your logic app, or after deployment.
233
233
@@ -713,35 +713,17 @@ To test your logic app workflow, follow these steps to start a debugging session
713
713
714
714

715
715
716
-
1. To test the callback URL by triggering the logic app workflow, open [Postman](https://www.postman.com/downloads/) or your preferred tool for creating and sending requests.
716
+
1. Copy and save the **Callback URL** property value.
717
717
718
-
This example continues by using Postman. For more information, see [Postman Getting Started](https://learning.postman.com/docs/getting-started/introduction/).
718
+
1. To test the callback URL by sending a request and triggering the workflow, open your preferred tool or app, and follow their instructions for creating and sending HTTP requests.
719
719
720
-
1. On the Postman toolbar, select **New**.
720
+
For this example, use the **GET** method with the copied URL, which looks like the following sample:
721
721
722
-

1. On the **Create New** pane, under **Building Blocks**, select **Request**.
724
+
When the trigger fires, the example workflow runs and sends an email that appears similar to this example:
725
725
726
-
1. In the **Save Request** window, under **Request name**, provide a name for the request, for example, **Test workflow trigger**.
727
-
728
-
1. Under **Select a collection or folder to save to**, select **Create Collection**.
729
-
730
-
1. Under **All Collections**, provide a name for the collection to create for organizing your requests, press Enter, and select **Save to <*collection-name*>**. This example uses **Logic Apps requests** as the collection name.
731
-
732
-
In Postman, the request pane opens so that you can send a request to the callback URL for the Request trigger.
733
-
734
-

735
-
736
-
1. Return to Visual Studio Code. From the workflow's overview page, copy the **Callback URL** property value.
737
-
738
-
1. Return to Postman. On the request pane, next the method list, which currently shows **GET** as the default request method, paste the callback URL that you previously copied in the address box, and select **Send**.
739
-
740
-

741
-
742
-
The example logic app workflow sends an email that appears similar to this example:
743
-
744
-

726
+

745
727
746
728
1. In Visual Studio Code, return to your workflow's overview page.
Copy file name to clipboardExpand all lines: articles/logic-apps/logic-apps-http-endpoint.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ This guide shows how to create a callable endpoint for your workflow by adding t
26
26
27
27
* A logic app workflow where you want to use the request-based trigger to create the callable endpoint. You can start with either a blank workflow or an existing workflow where you can replace the current trigger. This example starts with a blank workflow.
28
28
29
-
* To test the URL for the callable endpoint that you create, you'll need a tool or app such as [Postman](https://www.postman.com/downloads/).
29
+
* To test the URL for the callable endpoint that you create, you'll need a local tool or app such as [Insomnia](https://insomnia.rest/) or [Bruno](https://www.usebruno.com/) to send the HTTP request.
30
30
31
31
## Create a callable endpoint
32
32
@@ -110,7 +110,7 @@ Based on whether you have a Standard or Consumption logic app workflow, follow t
110
110
111
111
:::image type="content" source="./media/logic-apps-http-endpoint/find-trigger-url-standard.png" alt-text="Screenshot shows Standard workflow and Overview page with workflow URL." lightbox="./media/logic-apps-http-endpoint/find-trigger-url-standard.png":::
112
112
113
-
1. To test the callback URL that you now have for the Request trigger, use a tool or app such as [Postman](https://www.postman.com/downloads/), and send the request using the method that the Request trigger expects.
113
+
1. To test the callback URL that you now have for the Request trigger, use a local tool or app such as [Insomnia](https://insomnia.rest/) or [Bruno](https://www.usebruno.com/), and send the request using the method that the Request trigger expects.
114
114
115
115
This example uses the `POST` method:
116
116
@@ -194,7 +194,7 @@ Based on whether you have a Standard or Consumption logic app workflow, follow t
1. To test the callback URL that you now have for the Request trigger, use a tool or app such as [Postman](https://www.postman.com/downloads/), and send the request using the method that the Request trigger expects.
197
+
1. To test the callback URL that you now have for the Request trigger, use a local tool or app such as [Insomnia](https://insomnia.rest/) or [Bruno](https://www.usebruno.com/), and send the request using the method that the Request trigger expects.
0 commit comments