INPUT_OBJECT
ContactInput
The contact input type
link GraphQL Schema definition
- input ContactInput {
- # The address of the contact.
- : AddressInput
- # If the contact is archived, then set this to the date when they were archived,
- # otherwise set this to null.
- : JSONDateTime
- # The name of the company the contact belongs to.
- : String
- # The ID of the company, the contact belongs to
- : UUID
- # Set this to the date the contact has been added to the agency. If not set, we
- # use the timestamp when the contact is imported.
- : JSONDateTime
- # A valid email address.
- : String
- # The external source for the contact. We suggest to set this to the source
- # software.
- : String
- # The Contact first name.
- : String
- # The ID of the property. Must be a UUID v4.
- : UUID!
- # is the contact a owner or a lead. if owner set this to true, false otherwise.
- : Boolean!
- # if set, determine the company labels assigned to a contact
- : [UUID!]
- # The Contact last name.
- : String
- # The locale code.
- : ContactLocale
- # Negotiator's list assigned to a contact
- : [Int!]
- # A free text field. You can use this to add some notes.
- : String
- # The ID of the team the contact belongs to
- : UUID
- # The phone number.
- : String
- # Buyer's lead can have preferences. Don't set this for owners.
- : [PreferenceInput!]
- # Represents different sets of pronouns.
- : Pronouns
- # The source for the contact. The only value that can be use is `import`.
- : SourceType
- # If the contact should receive notifications, set this to the date when they
- # accepted to received notifications, otherwise set this to null.
- : JSONDateTime
- # If the contact decided to not receive notifications, set this to the date when
- # they refused notifications, otherwise set this to null.
- : JSONDateTime
- # Set this to the last date the contact information was updated. If not set, we
- # use the timestamp when the contact is imported.
- : JSONDateTime
- }