Skip to content

Commit 0e7793f

Browse files
author
ecfan
committed
Update references to Postman
1 parent 88fd09b commit 0e7793f

8 files changed

+37
-27
lines changed

articles/logic-apps/connectors/sap-create-example-scenario-workflows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ In the following example, the `STFC_CONNECTION` RFC module generates a request a
662662

663663
1. On the designer toolbar, select **Run Trigger** > **Run** to manually start your workflow.
664664

665-
1. To simulate a webhook trigger payload, send an HTTP POST request to the endpoint URL that's specified by your workflow's Request trigger. Make sure to include your message content with your request. To send the request, use a tool such as the [Postman API client](https://www.postman.com/api-platform/api-client/).
665+
1. To simulate a webhook trigger payload, send an HTTP POST request to the endpoint URL that's specified by your workflow's Request trigger. Make sure to include your message content with your request. To send the request, use a local tool or app tool such as [Insomnia](https://insomnia.rest/) or [Bruno](https://www.usebruno.com/).
666666

667667
For this example, the HTTP POST request sends an IDoc file, which must be in XML format and include the namespace for the SAP action that you selected, for example:
668668

@@ -690,7 +690,7 @@ You've now created a workflow that can communicate with your SAP server. Now tha
690690

691691
1. Return to the workflow level. On the workflow menu, select **Overview**. On the toolbar, select **Run** > **Run** to manually start your workflow.
692692

693-
1. To simulate a webhook trigger payload, send an HTTP POST request to the endpoint URL that's specified by your workflow's Request trigger. Make sure to your message content with your request. To send the request, use a tool such as the [Postman API client](https://www.postman.com/api-platform/api-client/).
693+
1. To simulate a webhook trigger payload, send an HTTP POST request to the endpoint URL that's specified by your workflow's Request trigger. Make sure to your message content with your request. To send the request, use a local tool or app such as [Insomnia](https://insomnia.rest/) or [Bruno](https://www.usebruno.com/).
694694

695695
For this example, the HTTP POST request sends an IDoc file, which must be in XML format and include the namespace for the SAP action that you selected, for example:
696696

articles/logic-apps/connectors/sap-generate-schemas-for-artifacts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Based on whether you have a Consumption workflow in multi-tenant Azure Logic App
186186

187187
1. On the designer toolbar, select **Run Trigger** > **Run** to manually start your workflow.
188188

189-
1. To simulate a webhook trigger payload, send an HTTP POST request to the endpoint URL that's specified by your workflow's Request trigger. To send the request, use a tool such as [Postman](https://www.getpostman.com/apps).
189+
1. To simulate a webhook trigger payload, send an HTTP POST request to the endpoint URL that's specified by your workflow's Request trigger. To send the request, use a local tool or app such as [Insomnia](https://insomnia.rest/) or [Bruno](https://www.usebruno.com/).
190190

191191
For this example, the HTTP POST request sends an IDoc file, which must be in XML format and include the namespace for the SAP action that you selected, for example:
192192

@@ -220,7 +220,7 @@ For more information about reviewing workflow run history, see [Monitor logic ap
220220

221221
1. Return to the workflow level. On the workflow menu, select **Overview**. On the toolbar, select **Run** > **Run** to manually start your workflow.
222222

223-
1. To simulate a webhook trigger payload, send an HTTP POST request to the endpoint URL that's specified by your workflow's Request trigger. To send the request, use a tool such as [Postman](https://www.getpostman.com/apps).
223+
1. To simulate a webhook trigger payload, send an HTTP POST request to the endpoint URL that's specified by your workflow's Request trigger. To send the request, use a local tool or app such as [Insomnia](https://insomnia.rest/) or [Bruno](https://www.usebruno.com/).
224224

225225
For this example, the HTTP POST request sends an IDoc file, which must be in XML format and include the namespace for the SAP action that you selected, for example:
226226

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -730,6 +730,7 @@ To test your logic app workflow, follow these steps to start a debugging session
730730
If you created a stateful workflow, after the request that you sent triggers the workflow, the overview page shows the workflow's run status and history.
731731

732732
> [!TIP]
733+
>
733734
> If the run status doesn't appear, try refreshing the overview page by selecting **Refresh**.
734735
> No run happens for a trigger that's skipped due to unmet criteria or finding no data.
735736

articles/logic-apps/custom-connector-overview.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ In [multi-tenant Azure Logic Apps](logic-apps-overview.md), you can create [cust
3737

3838
* [Create an Azure Logic Apps connector](/connectors/custom-connectors/create-logic-apps-connector)
3939
* [Create a custom connector from an OpenAPI definition](/connectors/custom-connectors/define-openapi-definition)
40-
* [Create a custom connector from a Postman collection](/connectors/custom-connectors/define-postman-collection)
4140
* [Use a custom connector from a logic app](/connectors/custom-connectors/use-custom-connector-logic-apps)
4241
* [Share custom connectors in your organization](/connectors/custom-connectors/share)
4342
* [Submit your connectors for Microsoft certification](/connectors/custom-connectors/submit-certification)

articles/logic-apps/logic-apps-enterprise-integration-flatfile.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,13 @@ You're now done with setting up your flat file decoding action. In a real world
282282

283283
## Test your workflow
284284

285-
1. By using [Postman](https://www.getpostman.com/postman) or a similar tool and the `POST` method, send a call to the Request trigger's URL, which appears in the Request trigger's **HTTP POST URL** property, and include the XML content that you want to encode or decode in the request body.
285+
1. To send a call to the Request trigger's URL, which appears in the Request trigger's **HTTP POST URL** property, follow these steps:
286+
287+
1. Use a local tool or app such as [Insomnia](https://insomnia.rest/) or [Bruno](https://www.usebruno.com/) to send the HTTP request.
288+
289+
1. Send the HTTP request using the **`POST`** method with the URL.
290+
291+
1. Include the XML content that you want to encode or decode in the request body.
286292

287293
1. After your workflow finishes running, go to the workflow's run history, and examine the Flat File action's inputs and outputs.
288294

articles/logic-apps/logic-apps-enterprise-integration-liquid-transform.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -271,16 +271,22 @@ The following steps show how to add a Liquid transformation action for Consumpti
271271

272272
## Test your workflow
273273

274-
1. By using [Postman](https://www.getpostman.com/postman) or a similar tool and the `POST` method, send a call to the Request trigger's URL, which appears in the Request trigger's **HTTP POST URL** property, and include the JSON input to transform, for example:
274+
1. To send a call to the Request trigger's URL, which appears in the Request trigger's **HTTP POST URL** property, follow these steps:
275275

276-
```json
277-
{
278-
"devices": "Surface, Mobile, Desktop computer, Monitors",
279-
"firstName": "Dean",
280-
"lastName": "Ledet",
281-
"phone": "(111)0001111"
282-
}
283-
```
276+
1. Use a local tool or app such as [Insomnia](https://insomnia.rest/) or [Bruno](https://www.usebruno.com/) to send the HTTP request.
277+
278+
1. Send the HTTP request using the **`POST`** method with the URL.
279+
280+
1. Include the JSON input to transform, for example:
281+
282+
```json
283+
{
284+
"devices": "Surface, Mobile, Desktop computer, Monitors",
285+
"firstName": "Dean",
286+
"lastName": "Ledet",
287+
"phone": "(111)0001111"
288+
}
289+
```
284290

285291
1. After your workflow finishes running, go to the workflow's run history, and examine the **Transform JSON to JSON** action's inputs and outputs, for example:
286292

articles/logic-apps/logic-apps-scenario-edi-send-batch-messages.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -218,50 +218,48 @@ batch sender because they're not visible to each other.
218218

219219
1. Create another logic app with this name: "SendX12MessagesToBatch"
220220

221-
2. In the search box, enter "when a http request" as your filter.
221+
1. In the search box, enter "when a http request" as your filter.
222222
Select this trigger: **When a HTTP request is received**
223223

224224
![Add the Request trigger](./media/logic-apps-scenario-EDI-send-batch-messages/add-request-trigger-sender.png)
225225

226-
3. Add an action for sending messages to a batch.
226+
1. Add an action for sending messages to a batch.
227227

228228
1. Under the HTTP request action, choose **New step**.
229229

230-
2. In the search box, enter "batch" as your filter.
230+
1. In the search box, enter "batch" as your filter.
231231
Select the **Actions** list, and then select this action:
232232
**Choose a Logic Apps workflow with batch trigger - Send messages to batch**
233233

234234
![Select "Choose a Logic Apps workflow with batch trigger"](./media/logic-apps-scenario-EDI-send-batch-messages/batch-sender-select-batch-trigger.png)
235235

236-
3. Now select your "BatchX12Messages" logic app that you previously created.
236+
1. Now select your "BatchX12Messages" logic app that you previously created.
237237

238238
![Select "batch receiver" logic app](./media/logic-apps-scenario-EDI-send-batch-messages/batch-sender-select-batch-receiver.png)
239239

240-
4. Select this action: **Batch_messages - <*your-batch-receiver*>**
240+
1. Select this action: **Batch_messages - <*your-batch-receiver*>**
241241

242242
![Select "Batch_messages" action](./media/logic-apps-scenario-EDI-send-batch-messages/batch-sender-select-batch-messages-action.png)
243243

244-
4. Set the batch sender's properties.
244+
1. Set the batch sender's properties.
245245

246246
| Property | Description |
247247
|----------|-------------|
248248
| **Batch Name** | The batch name defined by the receiver logic app, which is "TestBatch" in this example <p>**Important**: The batch name gets validated at runtime and must match the name specified by the receiver logic app. Changing the batch name causes the batch sender to fail. |
249249
| **Message Content** | The content for the message you want to send, which is the **Body** token in this example |
250-
|||
251250

252251
![Set batch properties](./media/logic-apps-scenario-EDI-send-batch-messages/batch-sender-set-batch-properties.png)
253252

254-
5. Save your logic app.
253+
1. Save your logic app.
255254

256255
Your batch sender logic app looks like this example:
257256

258257
![Save your batch sender logic app](./media/logic-apps-scenario-EDI-send-batch-messages/batch-sender-finished.png)
259258

260-
## Test your logic apps
259+
## Test your workflows
261260

262261
To test your batching solution, post X12 messages to your batch sender logic
263-
app from [Postman](https://www.getpostman.com/postman) or a similar tool.
264-
Soon, you start getting X12 messages in your request bin,
262+
app from a local tool or app that can send HTTP requests, such as [Insomnia](https://insomnia.rest/) or [Bruno](https://www.usebruno.com/). Soon, you start getting X12 messages in your request bin,
265263
either every 10 minutes or in batches of 10, all with the same partition key.
266264

267265
## Next steps

articles/logic-apps/secure-single-tenant-workflow-virtual-network-private-endpoint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ For more information, review [Create single-tenant logic app workflows in Azure
9191

9292
To trigger the workflow, you call or send a request to this URL.
9393

94-
1. Make sure that the URL works by calling or sending a request to the URL. You can use any tool you want to send the request, for example, Postman.
94+
1. Make sure that the URL works by calling or sending a request to the URL. You can use any local tool or app that you want for creating and sending HTTP requests, such as [Insomnia](https://insomnia.rest/) or [Bruno](https://www.usebruno.com/).
9595

9696
### Set up private endpoint connection
9797

0 commit comments

Comments
 (0)