GraphQL OBJECT

CustomerSearchResultItem

Customer that matches the search parameters.

link Definition

  • type CustomerSearchResultItem {
  • # Unique ID of the customer.
  • customerId: Int!
  • # Type of the customer
  • customerType: CustomerType
  • # Client the customer belongs to.
  • client: Client
  • # Your unique ID for the customer.
  • clientReferenceId: String
  • # Name of the company (if applicable).
  • company: String
  • # Customer's email address.
  • email: String
  • # Customer's fist name.
  • firstName: String
  • # Customer's last name.
  • lastName: String
  • # Username of the customer
  • username: String
  • }