Skip to main content
POST
/
notes
Create a note
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"
  }
}

Authorizations

Authorization
string
header
required

Body

application/json
relation
enum<string>
required

The type of resource to attach the note to.

Available options:
event
uuid
string<uuid>
required

The UUID of the event to attach the note to.

note
string
required

The note content. Supports basic HTML formatting (e.g. , ,
).

Maximum string length: 500
Example:

"Also basic <b>HTML</b> tags are supported."

Response

Created

success
boolean
required
status
integer
required
data
object
required
Last modified on April 4, 2026