| Node Name | Yes | Name of the node. Must consist of 1 to 128 characters and contain only letters, digits, underscores (_), hyphens (-), slashes (/), less-than signs (<), and greater-than signs (>). |
| URL Address | Yes | IP address or domain name and port number of the request host. For example: https://192.160.10.10:8080 |
| HTTP Method | Yes | Type of the request. Possible values: |
| Request Header | No | Click to add a request header. The parameters are described as follows: - Parameter Name
Name of a parameter. The options are Content-Type, Accept-Language, and X-Auth-Token. - Parameter Value
The value can contain a maximum of 64 characters and consists only of letters, digits, hyphens (-), underscores (_), slashes (/), and semicolons (;). |
| URL Parameter | No | Enters a URL parameter. The value is a character string in key=value format. Character strings are separated by newlines. This parameter is available only when HTTP Method is set to GET. Set these parameters as follows: - Parameter
The value can contain a maximum of 32 characters and consists only of letters, digits, hyphens (-), and underscores (_). - Value
The value can contain a maximum of 64 characters and consists only of letters, digits, hyphens (-), underscores (_), dollar signs ($), open braces ({), and close braces (}). |
| Request Body | Yes | The request body is in JSON format. This parameter is available only when HTTP Method is set to POST or PUT. |
| Check Return Value | No | Checks whether the value of the returned message is the same as the expected value. This parameter is available only when HTTP Method is set to GET. Possible values: - YES: Check whether the return value is the same as the expected one.
- NO: No need to check whether the return value is the same as the expected one. A 200 response code is returned (indicating that the node is successfully performed).
|
| Property Path | Yes | Path of the property in the JSON response message. Each Rest Client node can have only one property path. This parameter is available only when Check Returned Value is set to YES. For example, the returned result is as follows: {
"param1": "aaaa",
"inner":
{
"inner":
{
"param4": 2014247437
},
"param3": "cccc"
},
"status": 200,
"param2": "bbbb"
} The param4 path is inner.inner.param4. |
| Request Success Flag | Yes | Enter the request success flag. If the returned value of the response matches one of request success flags, the node is successfully performed. This parameter is available only when Check Returned Value is set to YES. The request success flag can contain only letters, digits, hyphens (-), underscores (_), dollar signs ($), open braces ({), and close braces (}). Separate values with semicolons (;). |
| Request Failure Flag | No | Enter the request failure flag. If the returned value of the response matches one of request failure flags, the node is successfully performed. This parameter is available only when Check Returned Value is set to YES. The request success flag can contain only letters, digits, hyphens (-), underscores (_), dollar signs ($), open braces ({), and close braces (}). Separate values with semicolons (;). |
| Retry Interval (seconds) | Yes | If the return value of the response message does not match the request success flag, the node keeps querying the matching status at a specified interval until the return value of the response message is the same as the request success flag. By default, the timeout interval of the node is one hour. If the return value of the response message does not match the request success flag within this period, the node status changes to Failed. This parameter is available only when Check Returned Value is set to YES. |
| The response message body parses the transfer parameter. | No | Specify the mapping between the job variable and JSON property path. Separate parameters by newline characters. For example: var4=inner.inner.param4 var4 is a job variable. The job variable must consist of 1 to 16 characters and contain only letters and digits. inner.inner.param4 is the JSON property path. This parameter takes effect only when it is referenced by the subsequent node. When this parameter is referenced, the format is ${var4} |