Skip to main content
PATCH
/
v1
/
publications
/
{id}
Update Publication
curl --request PATCH \
  --url https://api.mokaru.ai/v1/publications/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "publisher": "<string>",
  "date": "<string>",
  "url": "<string>",
  "description": "<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 publication. Only provided fields are modified. Pass null to clear an optional field.
Scope required: publications:write | Rate limit: 20 requests/min

Request

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

Body Parameters

name
string
Publication title (max 300)
publisher
string
Publisher (max 200, nullable)
date
string
ISO 8601 date string (nullable)
url
string
Publication URL (max 500, nullable)
description
string
Description (nullable)

Response

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