HTTP Request

Using this node allows you to create a HTTP request.

You need to fill:

  1. URL: The destination URL where this request will be sent to.
  1. Request Method: The HTTP Request method.
  2. Request Header: The Header of the HTTP Request, usually with the metadata of the request or token, etc.
  3. Request Body: The content of the request that will be sent to the endpoint.
  4. Response Body Result Variable Name: The variable to temporarily store the response that you get from the endpoint.
  5. HTTP Status Code Result Variable Name: The variable to temporarily store the status code of the response that you get
  6. 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}}"
}