Make HTTP Request
This process will make an HTTP request to the specified URL using the specified method. The response will be passed through to the next processor in the chain. This processor will return an error if the request fails for any reason (e.g. network error, invalid URL, etc.).
- type:
http.request.do - params:
- method: method to use for the HTTP request
- url: URL to send the HTTP request to
Example
Section titled “Example”Make a GET request to https://example.com
- type: http.request.do params: method: GET url: https://example.com