Update organization limits

Set the default per-project concurrency cap applied to projects without an explicit override. Set the value to 0 to remove the default; omit to leave it unchanged. The default cannot exceed the organization's concurrency limit.

PATCH/org/limits

Set the default per-project concurrency cap applied to projects without an explicit override. Set the value to 0 to remove the default; omit to leave it unchanged. The default cannot exceed the organization's concurrency limit.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response

application/json

Organization limits updated

curl -X PATCH "https://example.com/org/limits" \  -H "Content-Type: application/json" \  -d '{}'
{  "max_concurrent_sessions": 0,  "default_project_max_concurrent_sessions": 0}