Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

event update

Update fields on an existing calendar event. Only the fields you specify are changed; all others remain unchanged.

Usage

rscalendar event update --event-id <ID> [OPTIONS]

Options

OptionRequiredDescription
--event-id <ID>YesEvent ID to update
--calendar-id <ID>NoCalendar ID (default: primary)
--summary <TEXT>NoNew event title
--start <TIME>NoNew start time (RFC3339 or YYYY-MM-DD)
--end <TIME>NoNew end time (RFC3339 or YYYY-MM-DD)
--description <TEXT>NoNew description
--location <TEXT>NoNew location

At least one field must be provided.

Examples

Rename an event:

rscalendar event update --event-id abc123 --summary "New Title"

Change the time and location:

rscalendar event update --event-id abc123 --start "2026-04-02T10:00:00+03:00" --end "2026-04-02T11:00:00+03:00" --location "Room B"