Skip to content

Commit 88fd09b

Browse files
author
ecfan
committed
Update references to Postman
1 parent 79440a1 commit 88fd09b

File tree

10 files changed

+20
-53
lines changed

10 files changed

+20
-53
lines changed

articles/connectors/connectors-native-reqres.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,9 @@ When you use the Request trigger to receive inbound requests, you can model the
463463

464464
## Test your workflow
465465

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).
467469

468470
## Security and authentication
469471

articles/logic-apps/create-single-tenant-workflows-azure-portal.md

Lines changed: 7 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ In single-tenant Azure Logic Apps, workflows in the same logic app resource and
5555

5656
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.
5757

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.
5959

6060
* 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.
6161

@@ -328,40 +328,23 @@ In this example, the workflow runs when the Request trigger receives an inbound
328328
**`https://fabrikam-workflows.azurewebsites.net:443/api/Fabrikam-Stateful-Workflow/triggers/manual/invoke?api-version=2020-05-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=xxxxxXXXXxxxxxXXXXxxxXXXXxxxxXXXX`**
329329

330330
> [!TIP]
331+
>
331332
> You can also find the endpoint URL on your logic app's **Overview** pane in the **Workflow URL** property.
332333
>
333334
> 1. On the resource menu, select **Overview**.
334335
> 1. On the **Overview** pane, find the **Workflow URL** property.
335336
> 1. To copy the endpoint URL, move your pointer over the end of the endpoint URL text,
336337
> and select **Copy to clipboard** (copy file icon).
337338
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-
![Screenshot that shows Postman with New button selected](./media/create-single-tenant-workflows-azure-portal/postman-create-request.png)
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-
![Screenshot that shows Postman with the opened request pane](./media/create-single-tenant-workflows-azure-portal/postman-request-pane.png)
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.
357340

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:
359342

360-
![Screenshot that shows Postman and endpoint URL in the address box with Send button selected](./media/create-single-tenant-workflows-azure-portal/postman-test-endpoint-url.png)
343+
**`GET https://fabrikam-workflows.azurewebsites.net:443/api/Fabrikam-Stateful-Workflow/triggers/manual/invoke?api-version=2020-05-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=xxxxxXXXXxxxxxXXXXxxxXXXXxxxxXXXX`**
361344

362-
When the trigger fires, the example workflow runs and sends an email that appears similar to this example:
345+
When the trigger fires, the example workflow runs and sends an email that appears similar to this example:
363346

364-
![Screenshot that shows Outlook email as described in the example](./media/create-single-tenant-workflows-azure-portal/workflow-app-result-email.png)
347+
![Screenshot that shows Outlook email as described in the example](./media/create-single-tenant-workflows-azure-portal/workflow-app-result-email.png)
365348

366349
<a name="review-run-history"></a>
367350

articles/logic-apps/create-single-tenant-workflows-visual-studio-code.md

Lines changed: 7 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ As you progress, you'll complete these high-level tasks:
227227

228228
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).
229229

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.
231231

232232
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.
233233

@@ -713,35 +713,17 @@ To test your logic app workflow, follow these steps to start a debugging session
713713

714714
![Screenshot shows workflow overview page with callback URL.](./media/create-single-tenant-workflows-visual-studio-code/find-callback-url.png)
715715

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.
717717

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.
719719

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:
721721

722-
![Screenshot that shows Postman with New button selected](./media/create-single-tenant-workflows-visual-studio-code/postman-create-request.png)
722+
**`GET http://localhost:7071/api/Stateful-Workflow/triggers/manual/invoke?api-version=2020-05-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=<shared-access-signature>`**
723723

724-
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:
725725

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-
![Screenshot shows Postman with the opened request pane.](./media/create-single-tenant-workflows-visual-studio-code/postman-request-pane.png)
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-
![Screenshot shows Postman and callback URL in the address box with Send button selected.](./media/create-single-tenant-workflows-visual-studio-code/postman-test-call-back-url.png)
741-
742-
The example logic app workflow sends an email that appears similar to this example:
743-
744-
![Screenshot shows Outlook email as described in the example.](./media/create-single-tenant-workflows-visual-studio-code/workflow-app-result-email.png)
726+
![Screenshot shows Outlook email as described in the example.](./media/create-single-tenant-workflows-visual-studio-code/workflow-app-result-email.png)
745727

746728
1. In Visual Studio Code, return to your workflow's overview page.
747729

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This guide shows how to create a callable endpoint for your workflow by adding t
2626

2727
* 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.
2828

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.
3030

3131
## Create a callable endpoint
3232

@@ -110,7 +110,7 @@ Based on whether you have a Standard or Consumption logic app workflow, follow t
110110

111111
:::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":::
112112

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.
114114

115115
This example uses the `POST` method:
116116

@@ -194,7 +194,7 @@ Based on whether you have a Standard or Consumption logic app workflow, follow t
194194

195195
:::image type="content" source="./media/logic-apps-http-endpoint/find-trigger-url-consumption.png" alt-text="Screenshot shows Consumption logic app Overview page with workflow URL." lightbox="./media/logic-apps-http-endpoint/find-trigger-url-consumption.png":::
196196

197-
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.
198198

199199
This example uses the `POST` method:
200200

0 commit comments

Comments
 (0)