queues
Override queue concurrency limit
Override the concurrency limit of a queue. This is useful for temporarily scaling up or down based on demand.
post/api/v1/queues/{queueParam}/concurrency/override
Path parameters
queueParamstring required
The queue ID (e.g., queue_1234), or the name of the queue when using the type body parameter.
Request body
Response
Concurrency limit overridden successfully
Example response
{
"id": "queue_1234",
"name": "my-task-id",
"type": "task",
"running": 5,
"queued": 10,
"concurrencyLimit": 10,
"concurrency": {
"current": 10,
"base": 10
}
}