Publish a message to the specified destination
QStash authentication token
Content-Type is the MIME type of the message.
We highly recommend sending a Content-Type header along, as this will help your destination API to understand the content of the message.
Set this to whatever data you are sending through QStash, if your message is json, then use application/json. Some frameworks like Next.js will not parse your body correctly if the content type is not correct.
Examples:
application/jsonapplication/xmlapplication/octet-streamtext/plainYou can send custom headers to your endpoint along with your message.
To send a custom header, prefix the header name with Upstash-Forward-. We will strip prefix and send them to the destination.
| Header | Forwarded To Destination As |
|---|---|
| Upstash-Forward-My-Header: my-value | My-Header: my-value |
| Upstash-Forward-Authorization: Bearer | Authorization: Bearer |
The HTTP method to use when sending the request to your API.
GET, POST, PUT, PATCH, DELETE Specifies the maximum duration the request is allowed to take before timing out.
This parameter can be used to shorten the default allowed timeout value on your plan. See Max HTTP Connection Timeout on the pricing page for default values.
The format of this header is <value><unit> where value is a number and unit is one of:
s for secondsm for minutesh for hours.How many times should this message be retried in case the destination API returns an error or is not available.
The total number of deliveries is 1 (initial attempt) + retries.
If it is not provided, the plan default retry value will be used:
Customize the delay between retry attempts when message delivery fails.
By default, QStash uses exponential backoff. You can override this by providing a mathematical expressions to compute next delay. This expression is computed after each failed attempt.
You can use the special variable retried, which is how many times the message has been retried. The retried is 0 for the first retry.
Supported functions:
| Function | Description |
|---|---|
pow(x, y) | Returns x raised to the power of y |
exp(x) | Returns e raised to the power of x |
sqrt(x) | Takes the square root of x |
abs(x) | Returns the absolute value of x |
floor(x) | Returns the largest integer less than or equal to x |
ceil(x) | Returns the smallest integer greater than or equal to x |
round(x) | Rounds x to the nearest integer |
min(x, y) | Returns the smaller of x and y |
max(x, y) | Returns the larger of x and y |
Examples:
1000: Fixed 1 second delay1000 * (1 + retried): Linear backoffpow(2, retried) * 1000: Exponential backoffmax(1000, pow(2, retried) * 100): Exponential with minimum 1s delayDelay the message delivery.
The format of this header is <value><unit> where value is a number and unit is one of:
s for secondsm for minutesh for hours.d for days.Delay the message delivery until a certain timestamp in the future.
The format is a unix timestamp in seconds, based on the UTC timezone.
When both Upstash-Not-Before and Upstash-Delay headers are provided, Upstash-Not-Before will take precedence.
Label to assign to the message for easier identification and filtering in logs and DLQ.
Flow Control Key to use for rate limiting messages.
Make sure you pass Upstash-Flow-Control-Value header as well to define the limits for the key.
Flow Control parallelism, rate and period values to use for rate limiting messages for the given key.
Make sure you pass Upstash-Flow-Control-Key header as well to define the key.
Deduplication ID to use for de-duplicating messages.
If a message with the same deduplication ID was published in the last 10 minutes, the new message will be ignored.
Enable content based deduplication.
When enabled, QStash will compute a hash of the message body and use it as deduplication ID. If a message with the same content was published in the last 10 minutes, the new message will be ignored.
true, false You can define a callback url that will be called after message delivery, either success or failure. See the content of what will be delivered to a callback here.
You can send custom headers along with your callback message.
To send a custom header, prefix the header name with Upstash-Callback-Forward-. We will strip prefix and them to the callback URL.
| Header | Forwarded To Callback Destination As |
|---|---|
| Upstash-Callback-Forward-My-Header: my-value | My-Header: my-value |
| Upstash-Callback-Forward-Authorization: Bearer | Authorization: Bearer |
You can customize the callback message configuration.
See the Configuring Callbacks section to learn more.
| Header | Description |
|---|---|
| Upstash-Callback-Method | HTTP method to use for the callback request. Default is POST. |
| Upstash-Callback-Timeout | Timeout for the callback request. Format is same as Upstash-Timeout header. |
| Upstash-Callback-Retries | Number of retries for the callback request. Default is same as original message retries. |
| Upstash-Callback-Retry-Delay | Retry delay for the callback request. Format is same as Upstash-Retry-Delay header. |
You can define a failure callback url that will be called when a delivery is failed. That is when all the defined retries are exhausted. See the content of what will be delivered to a failure callback here
You can send custom headers along with your failure callback message.
To send a custom header, prefix the header name with Upstash-Failure-Callback-Forward-. We will strip prefix and them to the failure callback URL.
| Header | Forwarded To Callback Destination As |
|---|---|
| Upstash-Failure-Callback-Forward-My-Header: my-value | My-Header: my-value |
| Upstash-Failure-Callback-Forward-Authorization: Bearer | Authorization: Bearer |
You can customize the failure callback message configuration.
See the Configuring Callbacks section to learn more.
| Header | Description |
|---|---|
| Upstash-Failure-Callback-Method | HTTP method to use for the callback request. Default is POST. |
| Upstash-Failure-Callback-Timeout | Timeout for the callback request. Format is same as Upstash-Timeout header. |
| Upstash-Failure-Callback-Retries | Number of retries for the callback request. Default is same as original message retries. |
| Upstash-Failure-Callback-Retry-Delay | Retry delay for the callback request. Format is same as Upstash-Retry-Delay header. |
Destination can either be a valid URL where the message gets sent to, or a URL Group name.
Note that destination must be publicly accessible over the internet. If you are working with local endpoints, consider using QStash local development server or a public tunnel service.
The raw request message passed to the endpoints as is
The body is of type string.