Skip to main content
PATCH
/
v1
/
projects
/
{id}
Update project
curl --request PATCH \
  --url https://api.example.com/v1/projects/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "status": "<string>"
}
'
id
string
required
Project UUID.
name
string
New name (1-200 characters).
description
string
New description (max 2,000 characters).
status
string
One of active or archived.
curl -X PATCH https://api.getkommit.ai/v1/projects/a1b2c3d4-e5f6-7890-abcd-ef1234567890 \
  -H "Authorization: Bearer km_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{ "status": "archived" }'