GraphQL OBJECT

PurchaseSearchContact

Contact information of customer who placed the purchase.

link Definition

  • type PurchaseSearchContact {
  • # Contact's email address.
  • email: String!
  • # Domain of the customer's email address.
  • emailDomain: String
  • # Contact's first name.
  • firstName: String
  • # Contact's last name.
  • lastName: String
  • # Name of the company (if applicable).
  • company: String
  • # Contact's city.
  • city: String
  • # Contact's postal code.
  • postalCode: String
  • # Contact's country.
  • country: Country
  • # Contact's state. State submissions are possible for Australia, Brazil, Canada,
  • # India, Ireland, Japan, the UAE, and the USA.
  • state: State
  • # Line 1 of the address.
  • address1: String
  • # Line 2 of the address.
  • address2: String
  • # Phone.
  • phone: String
  • # ID.
  • id: Int
  • # language.
  • language: Language
  • }