Skip to content

ExternalCalendar

An object containing info about the provider's external calendar

Fields

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

Used By

Definition

"""
An object containing info about the provider's external calendar
"""
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 calendar
"""
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
}