Skip to main content
PATCH
JavaScript

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 browser sessions for this project. 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

Maximum pooled sessions capacity for this project. Set to 0 to remove the cap; omit to leave unchanged.

Response

Project limits updated

max_concurrent_sessions
integer | null

Maximum concurrent browser sessions for this project. 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

Maximum pooled sessions capacity for this project. Null means no project-level cap.

Example:

50