Skip to main content
PATCH
/
projects
/
{id}
curl -X PATCH http://localhost:3000/api/v1/projects/clxyz456 \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{"name": "Updated Project Name"}'
{
  "id": "clxyz456",
  "name": "Updated Project Name",
  "description": "A cool project",
  "ownerId": "clxyz123",
  "createdAt": "2026-03-18T01:00:00.000Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.nexusmission.com.br/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

id
string
required
Project ID.

Body

name
string
New project name.
description
string
New project description.
curl -X PATCH http://localhost:3000/api/v1/projects/clxyz456 \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{"name": "Updated Project Name"}'
{
  "id": "clxyz456",
  "name": "Updated Project Name",
  "description": "A cool project",
  "ownerId": "clxyz123",
  "createdAt": "2026-03-18T01:00:00.000Z"
}