curl -X GET https://qstash.upstash.io/v2/flowControl -H "Authorization: Bearer <token>"
[
{
"flowControlKey": "my-key",
"waitListSize": 5,
"parallelismMax": 10,
"parallelismCount": 3,
"rateMax": 100,
"rateCount": 42,
"ratePeriod": 60,
"ratePeriodStart": 1708000000
}
]
List All Flow Control Keys
curl -X GET https://qstash.upstash.io/v2/flowControl -H "Authorization: Bearer <token>"
[
{
"flowControlKey": "my-key",
"waitListSize": 5,
"parallelismMax": 10,
"parallelismCount": 3,
"rateMax": 100,
"rateCount": 42,
"ratePeriod": 60,
"ratePeriodStart": 1708000000
}
]
Show child attributes
parallelism/rate set in the flow control.curl -X GET https://qstash.upstash.io/v2/flowControl -H "Authorization: Bearer <token>"
[
{
"flowControlKey": "my-key",
"waitListSize": 5,
"parallelismMax": 10,
"parallelismCount": 3,
"rateMax": 100,
"rateCount": 42,
"ratePeriod": 60,
"ratePeriodStart": 1708000000
}
]
Was this page helpful?