Skip to main content
POST
/
v1
/
custom-sections
/
{id}
/
items
Create Custom Section Item
curl --request POST \
  --url https://api.mokaru.ai/v1/custom-sections/{id}/items \
  --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

Add an entry to a custom section. Only fields enabled in the section definition are persisted - other fields are silently dropped.
Scope required: custom-sections:write | Rate limit: 20 requests/min

Request

POST /v1/custom-sections/{sectionId}/items
Content-Type: application/json

Path Parameters

id
string
required
Section definition id

Body Parameters

All fields are optional. Use only those listed in the parent section’s enabledFields.
title
string
Item title (max 200 characters)
organization
string
Organisation (max 200 characters)
description
string
Free-text description
startDate
string
Free-form date in YYYY-MM format
endDate
string
Free-form date in YYYY-MM format
url
string
URL (max 500 characters)

Response

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