Skip to main content
PATCH
/
v1
/
custom-section-items
/
{id}
Update Custom Section Item
curl --request PATCH \
  --url https://api.mokaru.ai/v1/custom-section-items/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "organization": "<string>",
  "description": "<string>",
  "startDate": "<string>",
  "endDate": "<string>",
  "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 item. Only provided fields are modified. Pass null to clear a field.
Scope required: custom-sections:write | Rate limit: 20 requests/min

Request

PATCH /v1/custom-section-items/cli...
Content-Type: application/json

Path Parameters

id
string
required
Item id

Body Parameters

All fields are optional and nullable.
title
string
Item title
organization
string
Organisation
description
string
Description
startDate
string
YYYY-MM date string
endDate
string
YYYY-MM date string
url
string
URL

Response

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