Skip to content

ContactType

A object containing information about whether a specific contact type can be booked

Fields

appointment_setting_id · String · ID of the connected appointment setting
appointment_type_id · String · ID of the connected appointment type
form_id · String · An Alias of ID that makes creating the form easier
id · ID · The unique identifier of the contact type
name · String · The graphql_name of the contact type
show · Boolean! · required · Whether this contact type can be used
user_id · String · The ID of the connected user

Used By

Definition

"""
A object containing information about whether a specific contact type can be booked
"""
type ContactType {
"""
ID of the connected appointment setting
"""
appointment_setting_id: String
"""
ID of the connected appointment type
"""
appointment_type_id: String
"""
An Alias of ID that makes creating the form easier
"""
form_id: String
"""
The unique identifier of the contact type
"""
id: ID
"""
The graphql_name of the contact type
"""
name: String
"""
Whether this contact type can be used
"""
show: Boolean!
"""
The ID of the connected user
"""
user_id: String
}