latestOpenAPI 3.0.12026-08-10434791.3 KB
4eedf1838ef4
Pool
Update a pool
Update a pool with the specified name and concurrency limit. You cannot update the default pool. The default pool’s concurrency limit is adjusted to accommodate the new concurrency limit. A pool’s concurrency limit cannot be reduced if it has more running attempts than its new reduced concurrency limit.
patch/api/pools/{poolId}
Path parameters
poolIdinteger required
ID of the pool.
Request body
Example request
{
"concurrencyLimit": 10,
"name": "activation"
}Response
Pool updated
Example response
{
"concurrencyLimit": 10,
"default": true,
"id": "42",
"name": "activation"
}