GET
/org/projects/{id}/limitsGet the resource limit overrides for a project. Null values mean no project-level cap (org limit applies).
Authorization
bearerAuth AuthorizationBearer <token>
In: header
Path Parameters
id*string
Project ID
Response Body
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/org/projects/string/limits"{ "max_concurrent_sessions": 0, "max_concurrent_invocations": 0, "max_pooled_sessions": 0}{ "code": "string", "message": "string", "details": [ { "code": "string", "message": "string" } ], "inner_error": { "code": "string", "message": "string" }}{ "code": "string", "message": "string", "details": [ { "code": "string", "message": "string" } ], "inner_error": { "code": "string", "message": "string" }}{ "code": "string", "message": "string", "details": [ { "code": "string", "message": "string" } ], "inner_error": { "code": "string", "message": "string" }}Update organization limits PATCH
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.
Update project limits PATCH
Update resource limit overrides for a project. Only fields present in the request are modified. Set a field to 0 to remove that limit cap; omit a field to leave it unchanged.