Skip to main content
PUT
/
notes
/
{id}
Update a note
curl --request PUT \
  --url https://api.zeeg.me/v2/notes/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "note": "<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</p>"
}
'
{
  "success": true,
  "status": 200,
  "data": {
    "id": 42,
    "uuid": "vIgm8IvNzD",
    "note": "<p>Sophie confirmed — she prefers the 2 PM slot. Discuss enterprise pricing.</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:45:00.000000Z",
    "createdAt": "2026-04-15T10:32:00.000000Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.zeeg.me/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Path Parameters

id
string
required

The UUID or integer ID of the note.

Body

application/json
note
string
required

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

Maximum string length: 500

Response

OK

success
boolean
Example:

true

status
integer
Example:

200

data
object
Last modified on April 29, 2026