acceptInvite

Use this mutation to accept an event invite from another calendar. Doing so will cause the event to

  • be listed in the invitedEvents property of Event
  • be listed in the attendeeHistory property of Event
acceptInvite(eventId: String!calendarId: String!): Event

Arguments#


eventId
The id of an existing event. providing a non existent eventId will result in an IllegalStateException

calendarId
Note: if a calendar with the specified id does not exist, it will be created and invited to the event specified.

Type#

Event#

Example#

mutation{
acceptInvite(eventId:$invitingEventId,calendarId:$calendarToInvite){
id
}
}