curl --request POST \
--url https://api.getfernand.com/conversations/{id}/notes \
--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 POST \
--url https://api.getfernand.com/conversations/{id}/notes \
--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"
}ID of the conversation to add the note to.
HTML content of the note (required, max 8MB).
10485760Array of agent IDs or special mentions to notify. Use "everyone" to notify all team members.
["42", "everyone"]Automated actions to execute after creating the note (optional).
Show child attributes
If updating an existing draft note, provide its ID (optional).
Client-generated ID to track the note in the response (optional, returned unchanged).
Note added 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?