The REST API manager the router belongs to.
Readonly
restThe REST API manager the router belongs to.
Delete a calendar event RSVP from Guilded.
calendarEventRsvps.delete('abc', 123, 'abc');
The ID of the channel the calendar event RSVP belongs to.
The ID of the calendar event the RSVP belongs to.
The ID of the user the RSVP belongs to.
Edit a calendar event RSVP on Guilded.
The edited calendar event RSVP.
calendarEventRsvps.edit('abc', 123, 'abc', 'going');
The ID of the channel the calendar event RSVP belongs to.
The ID of the calendar event the RSVP belongs to.
The ID of the user the RSVP belongs to.
The status of the RSVP.
Fetch a calendar event RSVP from Guilded.
The fetched calendar event RSVP.
calendarEvents.fetch('abc', 123, 'abc');
The ID of the channel the calendar event RSVP belongs to.
The ID of the calendar event the RSVP belongs to.
The ID of the user the RSVP belongs to.
Fetch calendar event RSVPs from Guilded.
The fetched calendar event RSVPs.
calendarEvents.fetch('abc', 123);
The ID of the channel the calendar event RSVPs belong to.
The ID of the calendar event the RSVPs belong to.
The calendar event RSVP router for the Guilded REST API.
Example