AvailabilityInput
Payload for an availability
Fields
appointment_location_id
· String
· The ID of the appointment location appointment_type_id
· String
· The ID of the appointment type contact_type_id
· String
· The ID of the contact type day_of_week
· Int
· The day of the week for the availability is_repeating
· Boolean
· Whether the availability is repeating range_start
· String
· The start of the availability range Used By
Definition
"""Payload for an availability"""input AvailabilityInput { """ The ID of the appointment location """ appointment_location_id: String
""" The ID of the appointment type """ appointment_type_id: String
""" The ID of the contact type """ contact_type_id: String
""" The day of the week for the availability """ day_of_week: Int
""" The end time for the availability """ end_time: String
""" Whether the availability is repeating """ is_repeating: Boolean
""" The end of the availability range """ range_end: String
""" The start of the availability range """ range_start: String
""" The time for the availability """ time: String
""" The timezone for the availability """ timezone: String
""" The ID of the user """ user_id: String}