Show full details for a specific calendar event. No browser required.
The nylas calendar events show command displays all details for a single event: title, start/end times, location, description, attendees with RSVP status, recurrence rules, and conferencing links. Use --json to extract specific fields with jq.
How It Works
Calendar APIs are notoriously inconsistent across providers. Google Calendar uses RFC 5545 recurrence rules, Outlook uses its own format, and Exchange has yet another. The Nylas CLI normalizes all of this behind a consistent interface.
Syntax
nylas calendar events show --id EVENT_ID
Examples
Show full event details:
nylas calendar events show --id abc123def456
Extract attendee list with jq:
nylas calendar events show --id abc123def456 --json | jq '.participants[].email'
Key Flags
Run nylas calendar events show --help to see all available flags. Add --json for machine-readable output — useful when piping into jq or feeding data to scripts.
nylas calendar events show --help
Full docs: nylas calendar events show reference — all flags, advanced examples, and troubleshooting.
All commands: Nylas CLI Command Reference
Get started: brew install nylas/nylas-cli/nylas — other install methods
Top comments (0)