PINECONE_PROJECT_ID="32c8235a-5220-4a80-a9f1-69c24109e6f2"
PINECONE_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"
curl -X PATCH "https://api.pinecone.io/admin/projects/$PINECONE_PROJECT_ID" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN" \
-H "accept: application/json" \
-H "Content-Type: application/json" \
-H "X-Pinecone-Api-Version: 2025-04" \
-d '{ "name": "new-project-name" }'
PINECONE_PROJECT_ID="32c8235a-5220-4a80-a9f1-69c24109e6f2"
# Target the organization that contains the project.
pc target -o "example-org"
# Update the project name.
pc project update -i $PINECONE_PROJECT_ID -n "new-project-name"
{
"id": "32c8235a-5220-4a80-a9f1-69c24109e6f2",
"name": "new-project-name",
"max_pods": 5,
"force_encryption_with_cmek": false,
"organization_id": "-NM7af6f234168c4e44a",
"created_at": "2025-10-20T20:19:51.448431Z"
}
ATTRIBUTE VALUE
Name new-project-name
ID 32c8235a-5220-4a80-a9f1-69c24109e6f2
Organization ID -NM7af6f234168c4e44a
Created At 2025-10-20 20:19:51.448431 +0000 UTC
Force Encryption false
Max Pods 5
Update a project
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).
PINECONE_PROJECT_ID="32c8235a-5220-4a80-a9f1-69c24109e6f2"
PINECONE_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"
curl -X PATCH "https://api.pinecone.io/admin/projects/$PINECONE_PROJECT_ID" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN" \
-H "accept: application/json" \
-H "Content-Type: application/json" \
-H "X-Pinecone-Api-Version: 2025-04" \
-d '{ "name": "new-project-name" }'
PINECONE_PROJECT_ID="32c8235a-5220-4a80-a9f1-69c24109e6f2"
# Target the organization that contains the project.
pc target -o "example-org"
# Update the project name.
pc project update -i $PINECONE_PROJECT_ID -n "new-project-name"
{
"id": "32c8235a-5220-4a80-a9f1-69c24109e6f2",
"name": "new-project-name",
"max_pods": 5,
"force_encryption_with_cmek": false,
"organization_id": "-NM7af6f234168c4e44a",
"created_at": "2025-10-20T20:19:51.448431Z"
}
ATTRIBUTE VALUE
Name new-project-name
ID 32c8235a-5220-4a80-a9f1-69c24109e6f2
Organization ID -NM7af6f234168c4e44a
Created At 2025-10-20 20:19:51.448431 +0000 UTC
Force Encryption false
Max Pods 5
PINECONE_PROJECT_ID="32c8235a-5220-4a80-a9f1-69c24109e6f2"
PINECONE_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"
curl -X PATCH "https://api.pinecone.io/admin/projects/$PINECONE_PROJECT_ID" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN" \
-H "accept: application/json" \
-H "Content-Type: application/json" \
-H "X-Pinecone-Api-Version: 2025-04" \
-d '{ "name": "new-project-name" }'
PINECONE_PROJECT_ID="32c8235a-5220-4a80-a9f1-69c24109e6f2"
# Target the organization that contains the project.
pc target -o "example-org"
# Update the project name.
pc project update -i $PINECONE_PROJECT_ID -n "new-project-name"
{
"id": "32c8235a-5220-4a80-a9f1-69c24109e6f2",
"name": "new-project-name",
"max_pods": 5,
"force_encryption_with_cmek": false,
"organization_id": "-NM7af6f234168c4e44a",
"created_at": "2025-10-20T20:19:51.448431Z"
}
ATTRIBUTE VALUE
Name new-project-name
ID 32c8235a-5220-4a80-a9f1-69c24109e6f2
Organization ID -NM7af6f234168c4e44a
Created At 2025-10-20 20:19:51.448431 +0000 UTC
Force Encryption false
Max Pods 5
Authorizations
An access token must be provided in the Authorization header using the Bearer scheme.
Path Parameters
Project ID
Body
Project details to be updated. Fields that are omitted will not be updated.
The name of the new project.
1 - 512"chatbot-prod"
The maximum number of Pods that can be created in the project.
Whether to force encryption with a customer-managed encryption key (CMEK). Once enabled, CMEK encryption cannot be disabled.
Response
The project was successfully updated.
The details of a project.
The unique ID of the project.
The name of the project.
1 - 512The maximum number of Pods that can be created in the project.
Whether to force encryption with a customer-managed encryption key (CMEK).
The unique ID of the organization that the project belongs to.
The date and time when the project was created.
Was this page helpful?