Updates an existing CalendarEvent record. You must include the Id of the record to update along with all required fields.
Authentication
This endpoint requires OAuth2 authentication. Include a valid bearer token in the Authorization header.
The authenticated user must be a full unrestricted administrator or have the CalendarEvent-Edit role.
Enums
eCalendarEventRepeatCycle — Repeats values
Value Name 1 Daily 2 Weekly 3 Monthly 4 Yearly 5 FirstOfMonth 6 SecondOfMonth 7 ThirdOfMonth 8 LastOfMonth 9 FourthOfMonth
eRepeatedCalendarEventUpdateAction — WhichEventsToUpdate values
Value Name 1 UpdateThisEventOnly 2 UpdateFutureEventsOnly 3 UpdateAllEvents 4 DeleteAllEvents 5 DeleteEventsAfterThis 6 UpdateEventProducts
Request Body
Required Fields
The Id of the CalendarEvent record to update.
The location this event belongs to.
Event start date and time (UTC).
Event end date and time (UTC).
Optional Fields
Full name of the event host or presenter.
Brief summary shown under the event name on the Members Portal.
Full event description visible when a customer opens the event on the Members Portal.
Additional notes included in ticket confirmation emails.
Allow customers to join a waiting list when the event is at full capacity.
Request the buyer’s postal address during ticket checkout.
Display the attendee list on the Members Portal event page.
Venue or room name displayed on the event page.
Street address of the event venue.
Resource linked to this event; automatically blocked from bookings for the event’s duration.
Maximum number of attendees; leave empty for unlimited.
Categories assigned to this event.
Removed Event Categories.
Date and time the event becomes visible on the Members Portal (UTC).
Display this event in the home page banner on the Members Portal.
Display this event on the Members Portal home page.
Allow customers to post comments on the event.
Attach a Zoom conference call link to this event.
Create a Zoom webinar instead of a regular conference call.
ZoomWebinarAlternativeHosts
Comma-separated email addresses of alternative Zoom hosts who can start the meeting.
Raw Zoom meeting data returned after the Zoom event is created.
Zoom meeting or webinar ID.
Restrict event attendance to contacts only.
Restrict event attendance to members only.
URL of an image to upload as the small event image.
Remove the current small event image.
URL of an image to upload as the large event image.
Remove the current large event image.
URL of an external website related to this event.
URL of a Facebook event or page for this event.
URL of an external ticketing page for this event.
Unique identifier shared by all occurrences in a repeat series.
Create this event as a recurring series (create only).
Recurrence pattern for the event series. See eCalendarEventRepeatCycle enum above.
Which events in the recurring series to update (update only). See eRepeatedCalendarEventUpdateAction enum above.
Number of cycles between occurrences (e.g. 2 with Weekly means every two weeks).
Date the recurring series ends (create only).
Include Mondays in the recurring schedule.
Include Tuesdays in the recurring schedule.
Include Wednesdays in the recurring schedule.
Include Thursdays in the recurring schedule.
Include Fridays in the recurring schedule.
Include Saturdays in the recurring schedule.
Include Sundays in the recurring schedule.
Event start date and time in the location’s local timezone.
Event end date and time in the location’s local timezone.
Publish date and time in the location’s local timezone.
AfterEventNotificationJobId
Background job ID for the scheduled post-event notification email.
SendAfterEventNotification
Send a follow-up notification email to attendees after the event ends.
AfterEventNotificationText
Custom message body for the post-event notification email.
SendBeforeEventNotification
Send a reminder notification email to attendees before the event starts.
A form is linked to this event that attendees are asked to complete.
Send the linked event form to attendees by email.
ID of the form page linked to this event.
Code Examples
curl -X PUT \
"https://spaces.nexudus.com/api/content/calendarevents" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"BusinessId": 0,
"Name": "",
"StartDate": "2025-01-15T10:30:00Z",
"EndDate": "2025-01-15T10:30:00Z",
"Id": 87654321
}'
Response
200
HTTP status code. 200 on success.
A human-readable message confirming the update.
Contains the Id of the updated record.
true if the calendarevent was updated successfully.
{
"Status" : 200 ,
"Message" : "CalendarEvent was successfully updated." ,
"Value" : {
"Id" : 87654321
},
"OpenInDialog" : false ,
"OpenInWindow" : false ,
"RedirectURL" : null ,
"JavaScript" : null ,
"UpdatedOn" : "2025-01-15T10:30:00Z" ,
"UpdatedBy" : "admin@example.com" ,
"Errors" : null ,
"WasSuccessful" : true
}
400
A summary of the validation error(s), in the format PropertyName: error message.
null on validation failure.
Array of validation errors. The value that was submitted for the field, or null if missing.
The validation error message.
The name of the property that failed validation.
false when the request fails validation.
{
"Message" : "Name: is a required field" ,
"Value" : null ,
"Errors" : [
{
"AttemptedValue" : null ,
"Message" : "is a required field" ,
"PropertyName" : "Name"
}
],
"WasSuccessful" : false
}