https://example.com/api/webhook
Instead of using this URL directly as the webhook address, use:
https://qstash.upstash.io/v2/publish/https://example.com/api/webhook?qstash_token=<QSTASH_TOKEN>
Upstash-Forward-
will be forwarded to your endpoint.However, since most webhook services do not allow header prefixing, we introduced a configuration option to enable forwarding all incoming request headers.To enable this, set Upstash-Header-Forward: true
in the publish request or append the query parameter ?upstash-header-forward=true
to the request URL. This ensures that all headers are forwarded to your endpoint without requiring the Upstash-Forward-
prefix.https://example.com/api/webhook
Instead of using this URL directly, you can create a URL Group and add this URL as an endpoint.
https://qstash.upstash.io/v2/publish/<URL_GROUP_NAME>?qstash_token=<QSTASH_TOKEN>
You can define default headers for a URL Group, which will automatically apply to all requests sent to that group.