Skip to main content
PATCH
/
v1
/
projects
/
{id}
Update Project
curl --request PATCH \
  --url https://api.mokaru.ai/v1/projects/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "organisation": "<string>",
  "startDate": "<string>",
  "endDate": "<string>",
  "isCurrent": true,
  "url": "<string>"
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.mokaru.ai/llms.txt

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

Overview

Update an existing project. Only provided fields are modified. Pass null to clear an optional field.
Scope required: projects:write | Rate limit: 20 requests/min

Request

PATCH /v1/projects/clx...
Content-Type: application/json

Body Parameters

name
string
Project name (max 200)
description
string
Description
organisation
string
Organisation (max 200, nullable)
startDate
string
ISO 8601 date string (nullable)
endDate
string
ISO 8601 date string (nullable)
isCurrent
boolean
Ongoing flag
url
string
Project URL (max 500, nullable)

Response

{
  "success": true,
  "id": "clx..."
}