The REST API manager the router belongs to.
Readonly
restThe REST API manager the router belongs to.
Create a calendar event on Guilded.
The created calendar event.
calendarEvents.create('abc', { name: 'Event!' });
The ID of the channel the calendar event belongs to.
The payload of the calendar event.
Delete a calendar event from Guilded.
calendarEvents.delete('abc', 123);
The ID of the channel the calendar event belongs to.
The ID of the calendar event to delete.
Edit a calendar event on Guilded.
The edited calendar event.
calendarEvents.edit('abc', 123, { name: 'Event!' });
The ID of the channel the calendar event belongs to.
The ID of the calendar event to edit.
The payload of the calendar event.
Fetch a calendar event from Guilded.
The fetched calendar event.
calendarEvents.fetch('abc', 123);
The ID of the channel the calendar event belongs to.
The ID of the calendar event to fetch.
Fetch calendar events from Guilded.
The fetched calendar events.
calendarEvents.fetch('abc');
The ID of the channel the calendar events belong to.
Optional
options: APICalendarEventFetchManyOptionsThe options to fetch calendar events with.
The calendar event router for the Guilded REST API.
Example