INPUT_OBJECT
ContactCreateInput
Specified the fields required to create new contact.
link GraphQL Schema definition
- input ContactCreateInput {
 - #   First name for the contact.
 - : String!
 - #   Last name for the contact.
 - : String
 - #   Nickname for the contact.
 - : String
 - #   The contact’s mobile number in E.164 format.
 - : String
 - #   The contact’s email address.
 - : String
 - #   The contact’s birthday.
 - : String
 - #   The contact’s gender.
 - : Gender
 - #   A URL pointing to the contact’s photo.
 - : URL
 - #   The contact’s Twitter username.
 - : String
 - #   The contact’s Instagram username.
 - : String
 - #   The contact’s LinkedIn username.
 - : String
 - #   The contact’s job title.
 - : String
 - #   The contact’s company.
 - : String
 - #   Indicates if the contact has VIP status.
 - : Boolean
 - #   Indicates if the contact is hidden.
 - : Boolean
 - #   Indicates if the contact is archived.
 - : Boolean
 - #   Indicates if the contact is unsubscribed.
 - : Boolean
 - #   The contact’s country code.
 - : String
 - #   The contact’s province code.
 - : String
 - #   The contact’s city.
 - : String
 - #   The contact’s  zip code.
 - : String
 - #   The contact’s longitude.
 - : Float
 - #   The contact’s latitude.
 - : Float
 - #   Custom notes for the contact.
 - : String
 - }