cURL
curl --request PATCH \ --url https://api.example.com/v1/projects/{id} \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>", "description": "<string>", "status": "<string>" } '
Update an existing project’s name, description, or status.
active
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" }'
Was this page helpful?