OBJECT

Contact

link GraphQL Schema definition

  • type Contact {
  • # The contact address
  • address: Address
  • # If set, determine if the contact is archived or not. Example:
  • # 2018-11-13T10:00:00+01:00
  • archived_at: JSONDateTime
  • # The company contact name
  • company: String
  • # The Company id of the user, if set determine that user is unassigned from the
  • # office
  • company_id: UUID
  • # If set, determine when the contact is created. Example:
  • # 2018-11-13T10:00:00+01:00
  • created_at: JSONDateTime
  • # The Email address of the imported contact
  • email: String
  • # The contact external source information
  • external_source: String
  • # The first name of the imported contact
  • first_name: String
  • # The id of the imported contact
  • id: UUID!
  • # Is contact vendor
  • is_vendor: Boolean!
  • # if set, assign to the contact it labels
  • labels: [UUID!]
  • # The last name of the imported contact
  • last_name: String
  • # The locale of the contact
  • locale: ContactLocale
  • # if set, assign to the contact it negotiators
  • negotiator_ids: [Int!]
  • # The note of the imported contact
  • note: String
  • # The office id of the contact
  • office_id: UUID
  • # The Phone number of the imported contact
  • phone: String
  • # If set, Preferences of the contact
  • preferences: [Preference!]
  • # Represent pronouns of the imported contact
  • pronouns: Pronouns
  • # The contact source type information
  • source_type: SourceType
  • # If set, determine if the contact is subscribed or not. Example:
  • # 2018-11-13T10:00:00+01:00
  • subscribed_at: JSONDateTime
  • # If set, determine if the contact is unsubscribed or not. Example:
  • # 2018-11-13T10:00:00+01:00
  • unsubscribed_at: JSONDateTime
  • # If set, determine if the contact is updated or not. Example:
  • # 2018-11-13T10:00:00+01:00
  • updated_at: JSONDateTime
  • }

link Require by