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
> If you want to include the hash or pound symbol (**#**) in the URI
204
205
> when making a call to the Request trigger, use this encoded version instead: `%25%23`
205
206
@@ -364,14 +365,13 @@ The Request trigger creates a manually callable endpoint that can handle *only*
364
365

365
366
366
367
> [!NOTE]
368
+
>
367
369
> If you want to include the hash or pound symbol (**#**) in the URI
368
370
> when making a call to the Request trigger, use this encoded version instead: `%25%23`
369
371
370
372
---
371
373
372
-
Now, continue building your workflow by adding another action as the next step. Under the trigger, select **Next step** so that you can find the action that you want to add.
373
-
374
-
For example, you can respond to the request by [adding a Response action](#add-response), which you can use to return a customized response and is described later in this article.
374
+
Now, continue building your workflow by adding another action as the next step. For example, you can respond to the request by [adding a Response action](#add-response), which you can use to return a customized response and is described later in this article.
375
375
376
376
> [!NOTE]
377
377
>
@@ -396,10 +396,14 @@ The following table lists the outputs from the Request trigger:
396
396
397
397
## Add a Response action
398
398
399
-
When you use the Request trigger to handle inbound requests, you can model the response and send the payload results back to the caller by using the built-in [Response action](../logic-apps/logic-apps-workflow-actions-triggers.md#response-action). You can use the Response action *only* with the Request trigger. This combination with the Request trigger and Response action creates the [request-response pattern](https://en.wikipedia.org/wiki/Request%E2%80%93response). Except for inside Foreach loops and Until loops, and parallel branches, you can add the Response action anywhere in your workflow.
399
+
When you use the Request trigger to receive inbound requests, you can model the response and send the payload results back to the caller by using the Response built-in action, which works *only* with the Request trigger. This combination with the Request trigger and Response action creates the [request-response pattern](https://en.wikipedia.org/wiki/Request%E2%80%93response). Except for inside Foreach loops and Until loops, and parallel branches, you can add the Response action anywhere in your workflow.
400
400
401
401
> [!IMPORTANT]
402
-
> If a Response action includes these headers, Logic Apps removes these headers from the generated response message without showing any warning or error:
402
+
>
403
+
> If your Response action includes the following headers, Azure Logic Apps automatically
404
+
> removes these headers from the generated response message without showing any warning
405
+
> or error. Azure Logic Apps won't include these headers, although the service won't
406
+
> stop you from saving workflows that have a Response action with these headers.
403
407
>
404
408
> * `Allow`
405
409
> * `Content-*` headers except for `Content-Disposition`, `Content-Encoding`, and `Content-Type` when you use POST and PUT operations, but are not included for GET operations
@@ -409,9 +413,10 @@ When you use the Request trigger to handle inbound requests, you can model the r
409
413
> * `Set-Cookie`
410
414
> * `Transfer-Encoding`
411
415
>
412
-
> Although Logic Apps won't stop you from saving logic apps that have a Response action with these headers, Logic Apps ignores these headers.
413
416
414
-
1. In the Logic App Designer, under the step where you want to add a Response action, select **New step**.
417
+
## [Consumption](#tab/consumption)
418
+
419
+
1. In the workflow designer, under the step where you want to add the Response action, select **New step**.
415
420
416
421
For example, using the Request trigger from earlier:
417
422
@@ -450,6 +455,10 @@ When you use the Request trigger to handle inbound requests, you can model the r
450
455
451
456
1. When you're done, save your logic app. On the designer toolbar, select **Save**.
452
457
458
+
## [Standard](#tab/standard)
459
+
460
+
---
461
+
453
462
> [!IMPORTANT]
454
463
> If you have one or more Response actions in a complex workflow with branches, make sure
455
464
> that the workflow run processes at least one Response action during runtime.
0 commit comments