Send asynchronous requests to a remote server.
All requests are executed one after the other.
Number of seconds to wait
Types | Default |
---|---|
float | 0 |
[
{
"webhooks": [
{
"delay": 1,
"url": "https://api.site.com/webhook"
}
]
}
]
HTTP Methods for accessing the resource
Types | Default |
---|---|
string | POST |
[
{
"webhooks": [
{
"method": "POST",
"url": "https://api.site.com/webhook"
}
]
}
]
URL to a remote server
Types | Default |
---|---|
string | null |
[
{
"webhooks": [
{
"url": "https://api.site.com/webhook"
}
]
}
]
Deprecated! Will be removed in the next version.
Types | Default |
---|---|
object | [] |
[
{
"webhooks": [
{
"url": "https://api.site.com/webhook",
"headers": {
"X-API-Token": "e71ad173-dacf-493c-be55-643074fdf41c"
}
}
]
}
]
Types | Default |
---|---|
object | [] |
[
{
"webhooks": [
{
"url": "https://api.site.com/webhook",
"json": {
"ping": true
}
}
]
}
]
Types | Default |
---|---|
string | '' |
[
{
"webhooks": [
{
"url": "https://api.site.com/webhook",
"text": "<note><body>Don't forget me this weekend!</body></note>"
}
]
}
]
You can use Faker to generate random data
[
{
"webhooks": [
{
"url": "https://api.site.com/webhook",
"json": {
"id": "{{faker.uuid}}",
"createdAt": "{{faker.unixTime}}"
}
}
]
}
]
Webhook will send the data:
{
"id": "ea6143fe-bf40-3f1a-90d3-e6872204888d",
"createdAt": 1043055018
}