HTTP Request
Overview
Send HTTP requests and return the results of HTTP requests.
Parameter Configuration
| Parameter | Description |
|---|---|
| URL | The request URL. The URL value can be dynamically specified using expressions. |
| Method | The HTTP method for the request. |
| Request Headers | Request headers to be passed. Header values can be dynamically specified using expressions. |
| Timeout (Seconds) | Waiting time after the request is initiated. Default is 30 seconds. |
| Request Body Type | The type of data packet sent in the request. |
| Request Body | When Request Body Type is Raw Data, this is the request body information. The request body value can be dynamically specified using expressions. |
| Request Form | When Request Body Type is Form Data, this is the request form information. Form values can be dynamically specified using expressions. |
| Request Parameters | When Request Body Type is Parameters, this is the request parameter information. Parameter values can be dynamically specified using expressions. |
Return Values
| Parameter | Description |
|---|---|
| Return Value | The request return value |
| Status Code | The HTTP response status code when the request returns |
| Response Headers | The header information of the request response |
Usage Instructions
- Used in scenarios where you need to call heterogeneous systems, report data, or retrieve data.
- When the Request Body Type is Raw Data, please pay attention to the format of the request body. For example: When sending JSON format data, the data format must comply with JSON requirements.
- Request return values for images, audio, and video will be returned as strings in Base64 format. Others will be returned as strings. If the interface response data has a special format (such as JSON), it can be translated through expressions.

