Custom Actions¶
With Custom Actions, it is possible to create a workflow out of a set of actions that are executed whenever a Webhook.site URL receives a request or email.
Using this functionality, you can connect APIs that aren't compatible, convert a HTTP request to an email or vice versa, build workflows that would otherwise require a developer, and much, much more.
Demos¶
JavaScript, X and Schedules¶
In this video I'm doing a quick demo of how I used Webhook.site to set up a workflow to post updates from my news page automatically to my X/Twitter account. I used the actions JavaScript, Conditions, X Post, and Store Global Variable.
JSONPath and Google Sheets¶
In the following demo, webshop order details are received in a webhook. We then use Extract JSONPath and Google Sheets actions to insert their name in a Google Sheet. It also shows how variables interact with downstream actions.
Forward to multiple endpoints, Looping¶
A quick demo of how to use the Split Text action to loop over a list of URLs and forward the incoming request to them.
Templates¶
If you use the same set of Custom Actions often, you can create a Template that contains a copy of one or more Custom Actions, along with a set of Predefined Variables.
You can then use this template by creating an Import Template action.
Creating a Template¶
To create a Template, click the Create Template button at the bottom of the Custom Actions overlay. Then enter a name for the template and select which actions should be copied to the template. If your template actions e.g. depend on variables pre-existing, like configuration data, you can add one or more Predefined Variables. These are available to the actions in the Template, but also to any subsequent actions coming after the Import Template action.
Predefined Variables can be updated in the Control Panel.
Changes to the actions that the Template was created from do not automatically carry over to the template. Instead, Templates can be updated post-creation by overwriting them with a new set of actions.
Templates can also be managed using the Template API.
Repeating Actions¶
Webhook.site allows some action types to be repeating, which makes Webhook.site "loop over" one or more values without needing to use scripts.
Repetition is supported by the Extract JSONPath, Extract Regex and Split Text action types.
The maximum amount of items that are supported is 100 to prevent abuse.
The repeating action must be ordered before the actions that are to be repeated.
Queued Actions¶
By checking the Queued checkbox when creating a Custom Action, Webhook.site will run the action in an asynchronous background queue.
This is useful when:
- a Webhook.site URL should respond quickly, but a Custom Actions flow takes a long time to run. For example, if a Webhook.site URL should respond in 5 seconds, but an endpoint with a HTTP Request action that responds in 10 seconds is called, you can queue the HTTP Request action so it's run in the background queue.
- a Custom Actions flow takes longer than 30 seconds to run. As Webhook.site's timeout for Webhook.site URLs is 30 seconds, to run flows longer than that, you can mark the action as Queued to let it run for up to 120 seconds.
Additionally, you can specify an amount of seconds to wait until the action is executed. To do this, enter an amount of seconds in the Seconds textbox next to the Queue checkbox.
As the queued action will inherit the execution scope up until the action, there are some things that are important to be aware of when using Queued Actions:
- Variables defined by a queued action are not available to non-queued actions. You cannot, for example, mark a HTTP Request action as queued and use the response in a Modify Response action (which can't be queued.)
- Variables defined in non-queued actions ordered before the queued action will be available to the action.
- If several consecutive actions are marked as queued, and their delay is identical, they are considered a group and will pass variables and execute in order.
- The amount of time until the queued actions are executed can vary by a few seconds.
- Groups of queued actions have a total timeout of 120 seconds, at which the execution will be terminated.
Replay¶
With Replay, you can easily run Custom Actions again for either all or a subset of incoming requests.
For example, if you've made changes to your flow, want to import data again, fixed an error – there's a lot of reasons you might want to run your flow again for the requests on your Webhook.site URL, and now you can do it in Webhook.site with a few easy clicks.
If the filter matches more than 50 requests, a warning will be shown.
In this example above, an invalid port was set for a Database action. After correcting it, it's possible to run the action again. You can use the same Search Query language to filter which specific requests should have their actions replay.
Existing action output stored on a request is overwritten by the replay action output.
Actions that are marked as queued will also be run as queued when replayning actions.
While Webhook.site starts processing oldest requests first, actinos are run in batches and execution order is not strictly guaranteed.