Skip to content

HTTP Request

Overview

Send HTTP requests and return the results of HTTP requests.

Parameter Configuration

ParameterDescription
URLThe request URL. The URL value can be dynamically specified using expressions.
MethodThe HTTP method for the request.
Request HeadersRequest 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 TypeThe type of data packet sent in the request.
Request BodyWhen Request Body Type is Raw Data, this is the request body information. The request body value can be dynamically specified using expressions.
Request FormWhen Request Body Type is Form Data, this is the request form information. Form values can be dynamically specified using expressions.
Request ParametersWhen Request Body Type is Parameters, this is the request parameter information. Parameter values can be dynamically specified using expressions.

Return Values

ParameterDescription
Return ValueThe request return value
Status CodeThe HTTP response status code when the request returns
Response HeadersThe header information of the request response

Usage Instructions

    1. Used in scenarios where you need to call heterogeneous systems, report data, or retrieve data.
    1. 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.
    1. 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.