---
title: "Update project limits"
method: PATCH
path: "/org/projects/{id}/limits"
tags: ["Projects"]
---

# Update project limits

`PATCH /org/projects/{id}/limits`

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.

## Path parameters

- `id` string, required

## Request body

- UpdateProjectLimitsRequest
  - `max_concurrent_sessions` integer, nullable — 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, nullable — Maximum concurrent app invocations for this project. Set to 0 to remove the cap; omit to leave unchanged.
  - `max_pooled_sessions` integer, nullable — Deprecated: pooled browsers now count toward `max_concurrent_sessions`. Requests that set this field are rejected with a 400.

## Response `200`

Project limits updated

- ProjectLimits
  - `max_concurrent_sessions` integer, nullable — Maximum concurrent browsers for this project, covering both on-demand sessions (`browsers.create()`) and browser pool reservations. Null means no project-level cap.
  - `max_concurrent_invocations` integer, nullable — Maximum concurrent app invocations for this project. Null means no project-level cap.
  - `max_pooled_sessions` integer, nullable — Deprecated: pooled browsers now count toward `max_concurrent_sessions`. Always null.

## Other responses

- `400` — Bad Request – invalid input
- `401` — Unauthorized – missing or invalid authorization token
- `403` — Forbidden – insufficient permissions or plan
- `404` — Resource not found
- `500` — Internal Server Error

---

[API](https://skmtc.net/kernel/apis/kernel-api.md) · [All operations](https://skmtc.net/kernel/apis/kernel-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/kernel/kernel-api/versions/9e8ce9fcf5e1/schema)
