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..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 @@ -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. +* 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 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..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 @@ -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. +* 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