HTTP Request

Using this node allows you to create a HTTP request.
You need to fill:
- URL: The destination URL where this request will be sent to.

- Request Method: The HTTP Request method.
- Request Header: The Header of the HTTP Request, usually with the metadata of the request or token, etc.
- Request Body: The content of the request that will be sent to the endpoint.
- Response Body Result Variable Name: The variable to temporarily store the response that you get from the endpoint.
- HTTP Status Code Result Variable Name: The variable to temporarily store the status code of the response that you get
- Process Status Variable Name: To simplify the status that you receive.
Example
If you want to send the temporarily stored variable to the endpoint try this method.
Assuming you have stored a variable named user_name
{
"name": "{{user_name}}"
}
Updated 3 months ago