Skip to main content
PATCH
Update project limits

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Project ID

Body

application/json
max_concurrent_sessions
integer | null

Maximum concurrent browsers for this project, covering both on-demand sessions and browser pool reservations. Set to 0 to remove the cap; omit to leave unchanged.

max_concurrent_invocations
integer | null

Maximum concurrent app invocations for this project. Set to 0 to remove the cap; omit to leave unchanged.

max_pooled_sessions
integer | null
deprecated

Deprecated: pooled browsers now count toward max_concurrent_sessions. Requests that set this field are rejected with a 400 once the unified concurrency limit is enabled for your organization.

Response

Project limits updated

max_concurrent_sessions
integer | null

Maximum concurrent browsers for this project, covering both on-demand sessions (browsers.create()) and browser pool reservations. Null means no project-level cap.

Example:

10

max_concurrent_invocations
integer | null

Maximum concurrent app invocations for this project. Null means no project-level cap.

Example:

20

max_pooled_sessions
integer | null
deprecated

Deprecated: pooled browsers now count toward max_concurrent_sessions. Always null once the unified concurrency limit is enabled for your organization.

Example:

50