From 7625436b1d61b881264b1df396a49cde8bb12496 Mon Sep 17 00:00:00 2001 From: Adeel Ahmad Date: Thu, 19 Mar 2026 07:23:15 +0100 Subject: [PATCH 1/2] Added docs for content-length header's behaviour in call-rest --- .../activities/integration-activities/call-rest-action.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/integration-activities/call-rest-action.md b/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/integration-activities/call-rest-action.md index 2eea7bdfd84..38eb6eb1fd8 100644 --- a/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/integration-activities/call-rest-action.md +++ b/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/integration-activities/call-rest-action.md @@ -131,6 +131,10 @@ The **Password** property defines the password that will be used to authenticate These headers are added to the HTTP request header. Each custom header is a pair with a key and a value (a microflow expression). +{{% alert color="info" %}} +The actual computed-value for **Content-Length header** takes precedence over the user-specified value. Incase of unkown length (e.g. streamed or binary content), user-specified value is used. +{{% /alert %}} + {{% alert color="warning" %}} REST endpoints which are using NGINX as a webserver will ['silently drop'](https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/#missing-disappearing-http-headers) HTTP headers which contain an underscore `_`. {{% /alert %}} From ed6c9a92c0b47e1c868806fb411d01ddc8e74cb4 Mon Sep 17 00:00:00 2001 From: Yiyun Liao <110980413+Yiyun333@users.noreply.github.com> Date: Thu, 26 Mar 2026 17:56:35 +0100 Subject: [PATCH 2/2] Language review Corrected typos and improved clarity in the Content-Length header explanation. --- .../activities/integration-activities/call-rest-action.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/integration-activities/call-rest-action.md b/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/integration-activities/call-rest-action.md index 38eb6eb1fd8..a5def902bf6 100644 --- a/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/integration-activities/call-rest-action.md +++ b/content/en/docs/refguide/modeling/application-logic/microflows-and-nanoflows/activities/integration-activities/call-rest-action.md @@ -132,7 +132,7 @@ The **Password** property defines the password that will be used to authenticate These headers are added to the HTTP request header. Each custom header is a pair with a key and a value (a microflow expression). {{% alert color="info" %}} -The actual computed-value for **Content-Length header** takes precedence over the user-specified value. Incase of unkown length (e.g. streamed or binary content), user-specified value is used. +The actual computed value for the **Content-Length header** takes precedence over the user-specified value. In case of an unknown length (for example, streamed or binary content), the user-specified value is used. {{% /alert %}} {{% alert color="warning" %}}