Skip to main content
POST
/
content
/
{content_id}
/
notes
{
  "note_id": "<string>",
  "content_id": "<string>",
  "note": "<string>",
  "category": "<string>",
  "created_at": {}
}

Overview

Adds notes or annotations to a content item for internal tracking.

Path Parameters

content_id
string
required
The unique identifier of the content

Request Body

note
string
required
Note content
category
string
Note category (e.g., “quality”, “review”, “issue”)

Response

note_id
string
required
Unique identifier for the note
content_id
string
required
Associated content ID
note
string
required
Note content
category
string
Note category
created_at
datetime
required
Creation timestamp

Examples

curl -X POST https://api.judge.example.com/content/cnt_abc123/notes \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "note": "Content needs grammar review before publishing",
    "category": "review"
  }'