Attach an internal note to a scheduled event.
Notes are visible only to event hosts and workspace members with access to the event — invitees cannot see them. Each event supports a limited number of notes.
curl --request POST \
--url https://api.zeeg.me/v2/notes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"relation": "event",
"uuid": "zg-O69bac566950c6",
"note": "<p>Sophie prefers afternoon slots. Follow up about enterprise plan.</p>"
}
'{
"success": true,
"status": 201,
"data": {
"id": 42,
"uuid": "vIgm8IvNzD",
"note": "<p>Sophie prefers afternoon slots. Follow up about enterprise plan.</p>",
"eventUUID": "zg-O69bac566950c6",
"crmRecords": null,
"event": {
"UUID": "zg-O69bac566950c6",
"startAt": "2026-04-15T14:00:00.000000Z",
"endAt": "2026-04-15T14:30:00.000000Z",
"title": "30-Minute Discovery Call",
"duration": 30,
"eventType": {
"title": "30-Minute Discovery Call",
"slug": "30-minute-discovery-call"
}
},
"creator": {
"firstName": "Lena",
"lastName": "Meier",
"slug": "lena-meier",
"avatar": null
},
"updatedAt": "2026-04-15T10:32:00.000000Z",
"createdAt": "2026-04-15T10:32:00.000000Z"
}
}The type of resource to attach the note to.
event The UUID of the event to attach the note to.
The note content. Supports basic HTML formatting (e.g. , ,
).
500"Also basic <b>HTML</b> tags are supported."
Created
Hide child attributes
Internal numeric note ID
Short alphanumeric public identifier
"2lZb5IpExv"
Note content (supports basic HTML)
Zeeg event identifier
"zg-R69bc06d3ac712"
Hide child attributes
Zeeg event identifier
"zg-R69bc06d3ac712"
Timestamp of last update
Timestamp of creation
curl --request POST \
--url https://api.zeeg.me/v2/notes \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"relation": "event",
"uuid": "zg-O69bac566950c6",
"note": "<p>Sophie prefers afternoon slots. Follow up about enterprise plan.</p>"
}
'{
"success": true,
"status": 201,
"data": {
"id": 42,
"uuid": "vIgm8IvNzD",
"note": "<p>Sophie prefers afternoon slots. Follow up about enterprise plan.</p>",
"eventUUID": "zg-O69bac566950c6",
"crmRecords": null,
"event": {
"UUID": "zg-O69bac566950c6",
"startAt": "2026-04-15T14:00:00.000000Z",
"endAt": "2026-04-15T14:30:00.000000Z",
"title": "30-Minute Discovery Call",
"duration": 30,
"eventType": {
"title": "30-Minute Discovery Call",
"slug": "30-minute-discovery-call"
}
},
"creator": {
"firstName": "Lena",
"lastName": "Meier",
"slug": "lena-meier",
"avatar": null
},
"updatedAt": "2026-04-15T10:32:00.000000Z",
"createdAt": "2026-04-15T10:32:00.000000Z"
}
}