Skip to main content
PATCH
/
v1
/
interests
/
{id}
Update Interest
curl --request PATCH \
  --url https://api.mokaru.ai/v1/interests/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<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 interest. Only provided fields are modified.
Scope required: interests:write | Rate limit: 20 requests/min

Request

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

Body Parameters

name
string
Interest name (max 200)
description
string
Description (nullable)

Response

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