v2

latestOpenAPI 3.1.02026-08-07750280.6 KB
Events

Update event

Update a specific event by ID. All fields in the request body are optional - only include fields you want to change.

patch/events/{event_id}

Path parameters

event_idstring uuid required

Request body

client_full_namestring

Client's full name (optional)

client_emailstring email

Client's email address (optional)

client_phone_numberstring

Client's phone number (optional)

detailsstring

Event details (optional)

starting_datestring date-time

Event start date and time (optional)

ending_datestring date-time

Event end date and time (optional)

status'PENDING' | 'CONFIRMED' | 'APPROVED' | 'REJECTED' | 'PENDING_DELETION'

Event status (optional)

extrasobject

Additional metadata including custom field values (optional)

Example request

{
  "client_email": "mario@example.com",
  "client_full_name": "Mario Rossi",
  "details": "Updated suite room",
  "extras": {
    "custom_field_values": {
      "room_type": "deluxe"
    }
  }
}

Response

Event updated successfully

okboolean required