Webhook (Generic)
POST a notification payload to any HTTP/HTTPS endpoint — useful for custom integrations, internal APIs, or services not natively supported by notifly.
URL format
| Field | Required | Description |
|---|---|---|
host | Yes | Hostname of the webhook endpoint |
path | No | URL path (default: /) |
| scheme | Yes | json/jsons for JSON body, form/forms for form-encoded |
Request body
The notification message is sent as the request body:
Examples
Quirks & limitations
-
Use
jsons://orforms://(withs) for HTTPS — the scheme suffix controls protocol. - No authentication is added automatically — extend with a custom service if you need auth headers.
- HTTP method is always POST.
- For more control (custom headers, auth, method), use registerService() instead.