diff --git a/nodes/core/io/21-httprequest.html b/nodes/core/io/21-httprequest.html
index bd157a9ff..7beffe261 100644
--- a/nodes/core/io/21-httprequest.html
+++ b/nodes/core/io/21-httprequest.html
@@ -81,6 +81,8 @@
Must be one of GET
, PUT
, POST
, PATCH
or DELETE
.
When configured within the node, the URL property can contain mustache-style tags. These allow the
@@ -104,6 +108,11 @@
example.com/{{{topic}}}
, it will have the value of msg.topic
automatically inserted.
Using {{{...}}} prevents mustache from escaping characters like / & etc.
Note: If running behind a proxy, the standard http_proxy=...
environment variable should be set and Node-RED restarted.
The cookies
property passed to the node must be an object of name/value pairs.
+ The value can be either a string to set the value of the cookie or it can be an
+ object with a single value
property.
+
Any cookies returned by the request are passed back under the responseCookies
property.