---
title: "Update a project"
method: PATCH
path: "/admin/projects/{project_id}"
tags: ["Projects"]
---

# Update a project

`PATCH /admin/projects/{project_id}`

Update a project's configuration details.
You can update the project's name, maximum number of Pods, or enable encryption with a customer-managed encryption key (CMEK).

## Path parameters

- `project_id` string, uuid, required

## Headers

- `X-Pinecone-Api-Version` string, required

## Request body

- AdminUpdateProjectRequest
  - `name` string — The name of the new project.
  - `max_pods` integer — The maximum number of Pods that can be created in the project.
  - `force_encryption_with_cmek` boolean — Whether to force encryption with a customer-managed encryption key (CMEK). Once enabled, CMEK encryption cannot be disabled.

## Response `200`

The project was successfully updated.

- AdminProject — The details of a project.
  - `id` string, uuid, required — The unique ID of the project.
  - `name` string, required — The name of the project.
  - `max_pods` integer, required — The maximum number of Pods that can be created in the project.
  - `force_encryption_with_cmek` boolean, required — Whether to force encryption with a customer-managed encryption key (CMEK).
  - `organization_id` string, required — The unique ID of the organization that the project belongs to.
  - `created_at` string, date-time — The date and time when the project was created.

## Other responses

- `400` — Bad request. The request body included invalid request parameters.
- `401` — Unauthorized. Possible causes: Invalid API key.
- `403` — Forbidden
- `404` — Not found
- `500` — Internal server error.
- `4XX` — Unexpected error on request.

---

[API](https://skmtc.net/pinecone/apis/pinecone-api.md) · [All operations](https://skmtc.net/pinecone/apis/pinecone-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pinecone/pinecone-api/revisions/35876583485d/schema)
