QStash

List QStash Users

Retrieves a list of all QStash users associated with the account, including plan details, limits, and configuration.

GET/v2/qstash/users
cURL
curl --request GET \
  --url https://api.upstash.com/v2/qstash/users \
  --header 'Authorization: Bearer <token>'
200Response
[
  {
    "customer_id": "example@upstash.com",
    "id": "99a4c327-31f0-490f-a594-043ade84085a",
    "token": "ZXhhbXBsZUB1cHN0YXNoLmNvbTpuYWJlcg==",
    "read_only_token": "ZXhhbXBsZUB1cHN0YXNoLmNvbTpuYWJlcg==",
    "active": true,
    "state": "active",
    "modifying_state": "suspended",
    "last_plan_upgrade_time": 0,
    "max_message_size": 1048576,
    "max_requests_per_day": 1000,
    "max_requests_per_day_hard": 1000,
    "max_endpoints_per_topic": 100,
    "max_requests_per_second": 100,
    "max_dlq_size": 1000000,
    "max_retries": 999,
    "max_topics": 1,
    "max_schedules": 10,
    "max_events_size": 10000,
    "max_dlq_retention_time_milis": 259200000,
    "max_delay": 604800,
    "max_parallelism": 2,
    "max_global_parallelism": 10,
    "max_queues": 10,
    "max_bandwidth_per_second": 1048576,
    "prod_pack_enabled": false,
    "prometheus_enabled": "false",
    "timeout": 900,
    "type": "free",
    "region": "eu-central-1",
    "reserved_type": "",
    "reserved_price": 0,
    "created_by": "cahidarda@upstash.com",
    "creation_time": 1781871358,
    "deletion_time": 0,
    "budget": 0,
    "enterprise": {
      "enabled": true
    }
  }
]

Authorization

Authorizationheaderstringrequired

Bearer authentication header of the form Bearer <token>.

Response

200 — Successful response

Loading search…