v1

latestOpenAPI 3.0.12026-07-245277551.2 MB
Events

Create a note for an event

Creates a new note for a specific event.

post/events/v2/events/{eventId}/notes

Path parameters

eventIdstring required

Event ID or event code

Headers

x-property-idstring required
Example:1,2,3

A numeric, comma-separated string representing the property IDs, sent in the header.

Request body

eventIdstring

Event ID or event code (e.g., "12345" or "g162795")

textstring required

Note content

Example request

{
  "eventId": "12345",
  "text": "Guest requested late checkout for the wedding party"
}

Response

Note created

successboolean required

Success status

Example response

{
  "success": true,
  "data": {
    "id": "144",
    "eventId": "12345",
    "text": "Guest requested late checkout for the wedding party",
    "createdBy": "John Smith",
    "createdAt": "2025-01-15T10:30:00Z",
    "updatedAt": "2025-01-15T10:30:00Z",
    "archivedAt": "2025-01-20T14:45:00Z"
  }
}