INPUT_OBJECT

AvailabilityInput

Payload for an availability

link GraphQL Schema definition

  • 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
  • }