Skip to content

Commit 622a8ea

Browse files
Merge pull request #299243 from diberry/diberry/0502-uuf-403791
Azure Functions - JS/TS Http request with JSON Body
2 parents a88e0bc + 57a80ca commit 622a8ea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/azure-functions/functions-bindings-http-webhook-trigger.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Azure Functions HTTP trigger
33
description: Learn how to call an Azure Function via HTTP.
44
ms.topic: reference
5-
ms.date: 07/16/2024
5+
ms.date: 05/02/2025
66
ms.devlang: csharp
77
# ms.devlang: csharp, java, javascript, powershell, python
88
ms.custom: devx-track-csharp, devx-track-python, devx-track-extended-java, devx-track-js, devx-track-ts
@@ -286,7 +286,7 @@ public HttpResponseMessage run(
286286

287287
# [Model v4](#tab/nodejs-v4)
288288

289-
The following example shows an HTTP trigger [TypeScript function](functions-reference-node.md?tabs=typescript). The function looks for a `name` parameter either in the query string or the body of the HTTP request.
289+
The following example shows an HTTP trigger [TypeScript function](functions-reference-node.md?tabs=typescript). The function looks for a `name` parameter either in the query string or the body of the [HTTP request](functions-reference-node.md?tabs=typescript&pivots=nodejs-model-v4#http-request).
290290

291291
:::code language="typescript" source="~/azure-functions-nodejs-v4/ts/src/functions/httpTrigger1.ts" :::
292292

@@ -301,13 +301,13 @@ TypeScript samples aren't documented for model v3.
301301

302302
# [Model v4](#tab/nodejs-v4)
303303

304-
The following example shows an HTTP trigger [JavaScript function](functions-reference-node.md). The function looks for a `name` parameter either in the query string or the body of the HTTP request.
304+
The following example shows an HTTP trigger [JavaScript function](functions-reference-node.md). The function looks for a `name` parameter either in the query string or the body of the [HTTP request](functions-reference-node.md?tabs=javascript&pivots=nodejs-model-v4#http-request).
305305

306306
:::code language="javascript" source="~/azure-functions-nodejs-v4/js/src/functions/httpTrigger1.js" :::
307307

308308
# [Model v3](#tab/nodejs-v3)
309309

310-
The following example shows a trigger binding in a *function.json* file and a [JavaScript function](functions-reference-node.md) that uses the binding. The function looks for a `name` parameter either in the query string or the body of the HTTP request.
310+
The following example shows a trigger binding in a *function.json* file and a [JavaScript function](functions-reference-node.md) that uses the binding. The function looks for a `name` parameter either in the query string or the body of the [HTTP request](functions-reference-node.md?tabs=javascript&pivots=nodejs-model-v3#http-request).
311311

312312
Here's the *function.json* file:
313313

0 commit comments

Comments
 (0)