Skip to main content
POST
/
qstash-upgrade
Set QStash Plan
curl --request POST \
  --url https://api.upstash.com/qstash-upgrade \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "customer_id": "example@upstash.com",
  "plan_name": "paid"
}'
"OK"

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
customer_id
string
required

Customer identifier or team ID

Example:

"example@upstash.com"

plan_name
enum<string>
required

Target plan to upgrade to

Available options:
paid,
qstash_enterprise_1m,
qstash_enterprise_10m
Example:

"paid"

Response

200 - application/json

QStash plan changed successfully

The response is of type string.

Example:

"OK"