From 64b4ecbcaa6f2dda7f2147f6c29d8243be672eea Mon Sep 17 00:00:00 2001 From: Steve-Mcl Date: Thu, 10 Mar 2022 19:00:27 +0000 Subject: [PATCH] update html help --- .../nodes/locales/en-US/network/21-httpin.html | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/packages/node_modules/@node-red/nodes/locales/en-US/network/21-httpin.html b/packages/node_modules/@node-red/nodes/locales/en-US/network/21-httpin.html index d3f1984c4..ef38c8429 100644 --- a/packages/node_modules/@node-red/nodes/locales/en-US/network/21-httpin.html +++ b/packages/node_modules/@node-red/nodes/locales/en-US/network/21-httpin.html @@ -19,8 +19,18 @@

Outputs

payload
-
For a GET request, contains an object of any query string parameters. - Otherwise, contains the body of the HTTP request.
+
+
    +
  • GET - payload contains an object of any query string parameters passed in the HTTP Request
  • +
  • POST - payload contains the body of the HTTP Request
  • +
  • PUT - payload contains the body of the HTTP Request
  • +
  • DELETE - payload contains the body of the HTTP Request
  • +
  • PATCH - payload contains the body of the HTTP Request
  • +
  • HEAD - payload the HEAD method has no payload
  • +
  • OPTIONS - payload contains the body of the HTTP Request
  • +
  • TRACE - payload contains the details of the HTTP Request in the body
  • +
+
reqobject
An HTTP request object. This object contains multiple properties that provide information about the request.