OBJECT
AppointmentScheduleEntity
link GraphQL Schema definition
- type AppointmentScheduleEntity {
- # Tells if the entity instance is protected against delete (Entities that need to
- # be present in the system at any time). Delete action still may fail if entity is
- # deletable, due some other additional validations.
- : Boolean!
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # User assigned as the appointment owner when a booking is made through this
- # schedule.
- : ClientEntity
- # Appointment type used when a booking is created.
- : AppointmentTypeEntity
- # Owner of the schedule (typically the team member whose availability is exposed).
- : ClientEntity
- # Sender company email used as the From / Reply-To on schedule confirmation
- # emails. Empty falls back to the team space default.
- : CompanyEmailEntity
- # Description applied to appointments booked through this schedule.
- : String!
- # Duration of each booked appointment.
- : Float
- # Location applied to appointments booked through this schedule.
- : String!
- # How the location is interpreted (e.g. PhysicalAddress, OnlineMeeting).
- : AppointmentScheduleLocationTypeEnum
- # Id of the user receiving the booking.
- : ID!
- # Subject applied to appointments booked through this schedule.
- : String!
- # When true, booked appointments use the schedule_name as their subject instead of
- # appointment_subject.
- : Boolean!
- # Id of the appointment type.
- : ID!
- # IANA timezone (e.g. "Europe/Bratislava") in which availability windows are
- # defined.
- : String
- # Minutes of buffer reserved after each booked appointment.
- : Int!
- # Minutes of buffer reserved before each booked appointment.
- : Int!
- # What is shown to the booker after confirming (e.g. default Coevera page or a
- # custom redirect URL).
- : AppointmentScheduleConfirmationPageTypeEnum
- # Custom URL the booker is redirected to after confirming. Used when
- # confirmation_page_type selects a custom redirect.
- : String
- # Master switch for the schedule. Disabled schedules do not accept new bookings.
- : Boolean!
- # Minimum notice in hours required before a slot can be booked.
- : Int!
- # Admin-only name for the schedule, used in pickers and lists. Not shown to
- # bookers; use schedule_name for the public-facing name.
- : String!
- # Id of the schedule owner.
- : ID!
- # For rolling planning: how many days ahead the schedule remains bookable.
- : Int!
- # For fixed-range planning: first date bookings are accepted for.
- : Date
- # For fixed-range planning: last date bookings are accepted for.
- : Date
- # How far ahead bookings are accepted (e.g. RollingDays, FixedRange).
- : AppointmentSchedulePlanningTypeEnum
- # True when a reminder email is sent to invitees ahead of the booked appointment.
- : Boolean!
- # Time before the appointment when the reminder email is sent. Interpreted using
- # reminder_email_offset_type.
- : Int!
- # Unit of reminder_email_offset (e.g. Minutes, Hours, Days).
- : AppointmentScheduleReminderOffsetTypeEnum
- # Id of the reply company email.
- : ID
- # Public-facing name of the schedule, shown to bookers on the booking page.
- : String!
- # Step in minutes between offered start times (e.g. 15 means slots at :00, :15,
- # :30, :45).
- : Int!
- # Schedule type (e.g. one-on-one or round-robin).
- : AppointmentScheduleTypeEnum
- # Public URL slug of the schedule, used to share the booking page.
- : String!
- # Custom fields the booker is asked to fill in on the booking page, in display
- # order.
- : [AppointmentScheduleAdditionalField!]!
- # Weekly availability windows (per weekday) used to compute bookable slots, in the
- # schedule's availability_tzid timezone.
- : AppointmentScheduleAvailability!
- # Default invitees added to appointments booked through this schedule (Pipeliner
- # users or external email addresses).
- : [AppointmentScheduleInvitee!]!
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- # Arguments
- # tzId: [Not documented]
- # from: [Not documented]
- # to: [Not documented]
- (: String!, : Date!, : Date!): [DateTime!]!
- : Int!
- : Int!
- : Int!
- : Int!
- }