Docs
Update Event Notes
PATCH /Events/{eventId}/notes
PATCH
/Events/{eventId}/notesRequired Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
| Event token | x-Event-Token | Optional | Run **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
| Field | Type | Required | Description |
|---|---|---|---|
| eventId | Guid | Required | The ID of the event. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| notes | string | Required | The 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
| Code | HTTP Status | Description |
|---|---|---|
UNAUTHORIZED | 401 | Missing or invalid token. |
NOT_FOUND | 404 | Event not found. |