Blocks within webhooks
List of all the block within the webhooks group. If you're running an older core version, there may be groups listed here that are not available to you (yet).
number v12.1.6
Performs an HTTP GET request to retrieve data from the specified URL. Returns the response as a string value.
request: post value number v12.1.6
Performs an HTTP POST request to create or submit data to the specified URL with a raw string body.
request: put json number v12.1.6
Performs an HTTP PUT request to create or replace a resource at the specified URL with a JSON body.
request: head number v13.0.8
The HEAD HTTP method requests the metadata of a resource in the form of headers that the server would have sent if the GET method was used instead.
request: get json number v12.1.6
Performs an HTTP GET request to retrieve data from the specified URL. Automatically parses the response as JSON.
request: patch json number v13.0.2
Performs an HTTP PATCH request to partially update a resource at the specified URL with a JSON body.
request: delete json number v13.0.2
Performs an HTTP DELETE request to remove a resource at the specified URL. Automatically parses the response as JSON.
request: post json number v12.1.6
Performs an HTTP POST request to create or submit data to the specified URL with a JSON body.
request: put value number v12.1.6
Performs an HTTP PUT request to create or replace a resource at the specified URL with a raw string body.
request: post form-data number v12.1.6
Performs an HTTP POST request with application/x-www-form-urlencoded content type. The body object is automatically encoded as form data.
request: delete number v12.1.6
Performs an HTTP DELETE request to remove a resource at the specified URL. Returns the response as a string value.
Back to
webhooks
Return to the main group to view all sub-groups