From 89a10d14eb26ec1ca41dd0eb854e953b9e38e5df Mon Sep 17 00:00:00 2001 From: Adeel Ahmad Date: Thu, 21 Aug 2025 00:49:20 +0200 Subject: [PATCH 1/4] Updated for CRS --- .../consumed-rest-services/consumed-rest-service.md | 4 +++- .../consumed-rest-services/consumed-rest-service.md | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/content/en/docs/refguide/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md b/content/en/docs/refguide/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md index 9de30d5da57..b7e2ac326e3 100644 --- a/content/en/docs/refguide/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md +++ b/content/en/docs/refguide/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md @@ -32,7 +32,9 @@ The ability to import an OpenAPI/Swagger contract is currently in beta. ### Limitations * To use the request response to create a data structure automatically in your domain model, the response data should be in JSON format. It is possible to process other formats, such as XML or raw text, but you will need to extract the data you are looking for in a microflow. -* It is currently not possible to configure parameters in the Query Parameters tab +* It is currently not possible to configure parameters in the Query Parameters tab. +* Streaming responses from APIs are currently not supported. +* Implicit response-mapping is performed only for responses with status code `200`. ### Prerequisites diff --git a/content/en/docs/refguide10/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md b/content/en/docs/refguide10/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md index 2fe4cf53e53..0c1ba9ad036 100644 --- a/content/en/docs/refguide10/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md +++ b/content/en/docs/refguide10/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md @@ -36,6 +36,9 @@ The ability to import an OpenAPI/Swagger contract was introduced as a beta featu ### Limitations * To use the request response to create a data structure automatically in your domain model, the response data should be in JSON format. It is possible to process other formats, such as XML or raw text, but you will need to extract the data you are looking for in a microflow. +* It is currently not possible to configure parameters in the Query Parameters tab. +* Streaming responses from APIs are currently not supported. +* Implicit response-mapping is performed only for responses with status code `200`. ### Prerequisites From c38049422f336b5ea10934526fec7566146cfbea Mon Sep 17 00:00:00 2001 From: Adeel Ahmad Date: Thu, 21 Aug 2025 09:49:36 +0200 Subject: [PATCH 2/4] Updated code 200 limitation --- .../consumed-rest-services/consumed-rest-service.md | 2 +- .../consumed-rest-services/consumed-rest-service.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/refguide/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md b/content/en/docs/refguide/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md index b7e2ac326e3..dac36ae9249 100644 --- a/content/en/docs/refguide/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md +++ b/content/en/docs/refguide/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md @@ -34,7 +34,7 @@ The ability to import an OpenAPI/Swagger contract is currently in beta. * To use the request response to create a data structure automatically in your domain model, the response data should be in JSON format. It is possible to process other formats, such as XML or raw text, but you will need to extract the data you are looking for in a microflow. * It is currently not possible to configure parameters in the Query Parameters tab. * Streaming responses from APIs are currently not supported. -* Implicit response-mapping is performed only for responses with status code `200`. +* When the Send REST request action is executed in a microflow and the statusCode is in `2xx` range, but different than `200`, you can use the latestHttpResponse to get the StatusCode and Content of the request that was made. ### Prerequisites diff --git a/content/en/docs/refguide10/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md b/content/en/docs/refguide10/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md index 0c1ba9ad036..f54f0cc5cbe 100644 --- a/content/en/docs/refguide10/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md +++ b/content/en/docs/refguide10/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md @@ -38,7 +38,7 @@ The ability to import an OpenAPI/Swagger contract was introduced as a beta featu * To use the request response to create a data structure automatically in your domain model, the response data should be in JSON format. It is possible to process other formats, such as XML or raw text, but you will need to extract the data you are looking for in a microflow. * It is currently not possible to configure parameters in the Query Parameters tab. * Streaming responses from APIs are currently not supported. -* Implicit response-mapping is performed only for responses with status code `200`. +* When the Send REST request action is executed in a microflow and the statusCode is in `2xx` range, but different than `200`, you can use the latestHttpResponse to get the StatusCode and Content of the request that was made. ### Prerequisites From 58cb4822951922e2f7c18fe59ebd447211fd13b9 Mon Sep 17 00:00:00 2001 From: Quinn Tracy <142489060+quinntracy@users.noreply.github.com> Date: Thu, 21 Aug 2025 15:32:33 +0200 Subject: [PATCH 3/4] Update consumed-rest-service.md --- .../consumed-rest-services/consumed-rest-service.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/refguide/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md b/content/en/docs/refguide/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md index dac36ae9249..b7cf9b3a2c8 100644 --- a/content/en/docs/refguide/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md +++ b/content/en/docs/refguide/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md @@ -34,7 +34,7 @@ The ability to import an OpenAPI/Swagger contract is currently in beta. * To use the request response to create a data structure automatically in your domain model, the response data should be in JSON format. It is possible to process other formats, such as XML or raw text, but you will need to extract the data you are looking for in a microflow. * It is currently not possible to configure parameters in the Query Parameters tab. * Streaming responses from APIs are currently not supported. -* When the Send REST request action is executed in a microflow and the statusCode is in `2xx` range, but different than `200`, you can use the latestHttpResponse to get the StatusCode and Content of the request that was made. +* A response can be mapped in a microflow only for responses with status code `200`. If a Send REST request action is executed in a microflow and the status code is in 2xx range, but different than `200`, use the latestHttpResponse to get the status code and response content. ### Prerequisites From e998f5144e5c835cac47025f963a4b3bf6ef475b Mon Sep 17 00:00:00 2001 From: Quinn Tracy <142489060+quinntracy@users.noreply.github.com> Date: Thu, 21 Aug 2025 15:32:48 +0200 Subject: [PATCH 4/4] Update consumed-rest-service.md --- .../consumed-rest-services/consumed-rest-service.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/refguide10/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md b/content/en/docs/refguide10/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md index f54f0cc5cbe..03c132bfe19 100644 --- a/content/en/docs/refguide10/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md +++ b/content/en/docs/refguide10/modeling/integration/rest-services/consumed-rest-services/consumed-rest-service.md @@ -38,7 +38,7 @@ The ability to import an OpenAPI/Swagger contract was introduced as a beta featu * To use the request response to create a data structure automatically in your domain model, the response data should be in JSON format. It is possible to process other formats, such as XML or raw text, but you will need to extract the data you are looking for in a microflow. * It is currently not possible to configure parameters in the Query Parameters tab. * Streaming responses from APIs are currently not supported. -* When the Send REST request action is executed in a microflow and the statusCode is in `2xx` range, but different than `200`, you can use the latestHttpResponse to get the StatusCode and Content of the request that was made. +* A response can be mapped in a microflow only for responses with status code `200`. If a Send REST request action is executed in a microflow and the status code is in 2xx range, but different than `200`, use the latestHttpResponse to get the status code and response content. ### Prerequisites