Docs

Update Event Notes

PATCH /Events/{eventId}/notes

PATCH/Events/{eventId}/notes

Required Tokens

FieldTypeRequiredDescription
BearerAuthorization: Bearer <api-key>OptionalYour API key. Pass it as the Bearer token on every request.
Event tokenx-Event-TokenOptionalRun **Get Tokens** in the Authorization folder, or call `GET /Events/{eventId}/authorize` manually.

Updates the free-text notes field on an event. Notes are visible to all event users on the dashboard and are intended for general event-wide announcements or reminders.

Requires EventAdmin permission on the event.

Path Parameters

FieldTypeRequiredDescription
eventIdGuidRequiredThe ID of the event.

Request Body

FieldTypeRequiredDescription
notesstringRequiredThe new notes content. Replaces any existing notes.

Example Request

{
  "notes": "Doors open at 5pm. Load-in begins at 8am. Confirm with venue by end of week."
}

Response

200 OK — No response body.

Error Codes

CodeHTTP StatusDescription
UNAUTHORIZED401Missing or invalid token.
NOT_FOUND404Event not found.