Skip to main content
PATCH
/
v1
/
notes
/
{note_id}
Update a note
curl --request PATCH \
  --url https://app.nex.ai/api/developers/v1/notes/{note_id} \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "Updated meeting notes",
  "content": "Added action items..."
}
'
{
  "id": "900",
  "title": "Meeting notes",
  "content": "Discussed Q3 roadmap...",
  "entity_id": "1001",
  "created_by": "developer_api",
  "created_at": "2024-01-15T10:00:00Z"
}

Authorizations

Authorization
string
header
required

API key for authentication (format: "Bearer YOUR_API_KEY")

Path Parameters

note_id
string
required

Note ID

Body

application/json

Fields to update

title
string

New title

content
string

New content

entity_id
string

Change associated record

Response

Updated note

id
string
title
string
content
string
entity_id
string
created_by
string
created_at
string<date-time>
archived_at
string<date-time>
Last modified on March 7, 2026