OBJECT

ExternalCalendar

An object containing info about the provider's exrernal calendar

link GraphQL Schema definition

  • type ExternalCalendar {
  • # Send appointments to the external calendar
  • add_to_calendar: Boolean
  • # A list of potential calendars
  • calendar_list: [String]
  • # Email of external calendar
  • email: String
  • # The type of external calerndar
  • external_type: String
  • # Calendar has ran first sync
  • has_ran_first_sync: Boolean
  • # Calendar has refresh token
  • has_refresh_token: Boolean
  • # The unique identifier of the calendar
  • id: ID!
  • # Pull in appointments from the external calendar
  • pull_from_calendar: Boolean
  • # Calendar has pulled in location and note info otherwise it will contain 'Busy'
  • pull_in_event_details: Boolean
  • # Selected calendars to pull in appointments from
  • pulled_in_calendars: [String]
  • # The resource name (sync partner assigned ID) for the sync
  • resource_name: String
  • }