HTTP utilities provide you with webhooks and HTTP requests.

Changelog

14 versions
v1.7.0 Latest
  • Added test() (Flow Test Mode) to triggers (Uptime).
v1.6.0
  • Added SSL/TLS certificate support for all HTTP methods (Get, Post, Put, Patch, Delete). Users can now provide custom CA certificates, client certificates, and client keys in PEM format for secure communication with self-signed certificate servers.
v1.5.0
  • Fixed the response in case API doesn't return a valid JSON when a Binary data is sent in POST and PUT components.
v1.4.6
  • Fixed the response in case API doesn't return a valid JSON when a Binary data is sent in POST and PUT components
v1.4.5
  • Fixed an issue when updating the component from version 1.3.0 or earlier to 1.4.0 or later would cause the `Post` component loose its `body` input values.
v1.4.4
  • Add response headers to the output of HTTP actions.
v1.4.3
  • Put and Post headers improved for binary data.
v1.4.2
  • Put and Post both now support binary data as input.
v1.4.1
  • Post: fix the form-data name for the input type: file. File input name is now correctly set.
v1.4.0
  • Post: Added support for custom multipart/form-data allowing to send files.
v1.3.0
  • `Webhook Trigger` has been added as a new version of the Webhook component, removing the `response` input port.
  • `Webhook` with the `response` input port is now deprecated. Use the `Webhook Trigger` component instead.
v1.2.0
  • Added Patch component
v1.1.0
  • Added DynamicWebhook component
v1.0.0
  • Initial version

Authentication

TypeDetails
Other

Triggers

3
Dynamic Webhook icon

Dynamic Webhook

The component subscribes its own webhook URL and then fires any time a request is delivered to that URL.
Uptime icon

Uptime

Periodically checks if a site is up or down. Message is sent to output port when site's availability is changed (site goes up or down).
Webhook icon

Webhook

The Webhook trigger fires when an HTTP request is received on the URL provided to you in the Webhook configuration.

Actions

7
Delete icon

Delete

This action sends HTTP DELETE request to external services.
Get icon

Get

This action sends HTTP GET request to external services.
Patch icon

Patch

This component sends HTTP PATCH request to external services.
Post icon

Post

This component sends HTTP POST request to external services.
Put icon

Put

This action sends HTTP PUT request to external services.
Response icon

Response

This component returns HTTP response to Webhook
Webhook - Legacy icon

Webhook - Legacy

DEPRECATED - use Webhook Trigger instead.