INPUT_OBJECT

ContactCreateInput

Specified the fields required to create new contact.

link GraphQL Schema definition

  • input ContactCreateInput {
  • # First name for the contact.
  • firstName: String!
  • # Last name for the contact.
  • lastName: String
  • # The contact’s mobile number in E.164 format.
  • mobile: String
  • # The contact’s email address.
  • email: String
  • # The contact’s birthday.
  • birthday: String
  • # The contact’s gender.
  • gender: Gender
  • # A URL pointing to the contact’s photo.
  • photo: URL
  • # The contact’s Twitter username.
  • twitter: String
  • # The contact’s Instagram username.
  • instagram: String
  • # The contact’s LinkedIn username.
  • linkedin: String
  • # The contact’s job title.
  • jobTitle: String
  • # Indicates if the contact has VIP status.
  • vip: Boolean
  • # Indicates if the contact is hidden.
  • hidden: Boolean
  • # Indicates if the contact is archived.
  • archived: Boolean
  • # Indicates if the contact is unsubscribed.
  • unsubscribed: Boolean
  • # The contact’s country code.
  • country: String
  • # The contact’s province code.
  • province: String
  • # The contact’s city.
  • city: String
  • # The contact’s zip code.
  • zipCode: String
  • # The contact’s longitude.
  • longitude: Float
  • # The contact’s latitude.
  • latitude: Float
  • # Custom notes for the contact.
  • notes: String
  • }