OBJECT
Contact
link GraphQL Schema definition
- type Contact {
- # The contact address
- : Address
- # If set, determine if the contact is archived or not. Example:
- # 2018-11-13T10:00:00+01:00
- : JSONDateTime
- # The company contact name
- : String
- # The Company id of the user, if set determine that user is unassigned from the
- # office
- : UUID
- # If set, determine when the contact is created. Example:
- # 2018-11-13T10:00:00+01:00
- : JSONDateTime
- # The Email address of the imported contact
- : String
- # The contact external source information
- : String
- # The first name of the imported contact
- : String
- # The id of the imported contact
- : UUID!
- # Is contact vendor
- : Boolean!
- # if set, assign to the contact it labels
- : [UUID!]
- # The last name of the imported contact
- : String
- # The locale of the contact
- : ContactLocale
- # if set, assign to the contact it negotiators
- : [Int!]
- # The note of the imported contact
- : String
- # The office id of the contact
- : UUID
- # The Phone number of the imported contact
- : String
- # If set, Preferences of the contact
- : [Preference!]
- # Represent pronouns of the imported contact
- : Pronouns
- # The contact source type information
- : SourceType
- # If set, determine if the contact is subscribed or not. Example:
- # 2018-11-13T10:00:00+01:00
- : JSONDateTime
- # If set, determine if the contact is unsubscribed or not. Example:
- # 2018-11-13T10:00:00+01:00
- : JSONDateTime
- # If set, determine if the contact is updated or not. Example:
- # 2018-11-13T10:00:00+01:00
- : JSONDateTime
- }