curl --request PATCH \
--url https://api.getfernand.com/conversations/{id}/notes/{note_id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"content": "<string>"
}
'{
"id": "n-123456",
"conversation_id": 12345,
"message": "<p>Customer mentioned they prefer email communication.</p>",
"created": "2026-01-21T14:30:00Z",
"type": "NOTE",
"timestamp": "2026-01-21T14:30:00Z",
"agent_id": 42,
"actions": [
{}
],
"edited_at": "2026-01-21T15:00:00Z"
}curl --request PATCH \
--url https://api.getfernand.com/conversations/{id}/notes/{note_id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"content": "<string>"
}
'{
"id": "n-123456",
"conversation_id": 12345,
"message": "<p>Customer mentioned they prefer email communication.</p>",
"created": "2026-01-21T14:30:00Z",
"type": "NOTE",
"timestamp": "2026-01-21T14:30:00Z",
"agent_id": 42,
"actions": [
{}
],
"edited_at": "2026-01-21T15:00:00Z"
}Modifies the content of an existing note. Only the author of the note can edit it. The edited_at timestamp is automatically updated. Supports updating @mentions to notify additional team members. Maximum content size is 8MB.Documentation Index
Fetch the complete documentation index at: https://developers.getfernand.com/llms.txt
Use this file to discover all available pages before exploring further.
ID of the conversation containing the note.
ID of the note to update.
Note updated successfully.
Unique identifier for the note
"n-123456"
ID of the conversation this note belongs to
12345
HTML content of the note
"<p>Customer mentioned they prefer email communication.</p>"
ISO 8601 timestamp when the note was created
"2026-01-21T14:30:00Z"
Type of entry (always NOTE for conversation notes)
NOTE "NOTE"
ISO 8601 timestamp for sorting entries (same as created)
"2026-01-21T14:30:00Z"
ID of the agent who created the note
42
Array of automated actions triggered by this note
ISO 8601 timestamp when the note was last edited, or null if never edited
"2026-01-21T15:00:00Z"
Was this page helpful?