GraphQL OBJECT

ClientSearchResultItem

Client that matches the search parameters.

link Definition

  • type ClientSearchResultItem {
  • # Unique ID of the client.
  • id: Int!
  • # Short name of the client.
  • shortName: String
  • # Full name of the client.
  • fullName: String
  • # Internal name of the client.
  • internalName: String
  • # Flag that states if the client is active.
  • isActive: Boolean
  • # Client status.
  • status: ClientStatus
  • # Country of the client
  • country: Country
  • # Clearing method of the client.
  • clearingMethod: ClearingMethod
  • # Client segment of the client.
  • clientSegment: ClientSegment
  • # Date and time of the first sale.
  • timeOfFirstSale: DateTime
  • # Flag that states if the client allows us to act as a merchant.
  • allowUsIncAsMerchant: Boolean
  • # Date and time when client was created.
  • creationDate: DateTime
  • # Date and time when client was modified.
  • lastModifyDate: DateTime
  • # User who created the client.
  • createdBy: UserAccountInformation
  • # User that last modified the client.
  • lastModifiedBy: UserAccountInformation
  • # Main Sales contact user account.
  • mainSalesContactUserAccount: UserAccountInformation
  • # Additional Client Success contact user account.
  • additionalClientSuccessContactUserAccount: UserAccountInformation
  • # Main Account Management contact user account.
  • mainAccountManagementContactUserAccount: UserAccountInformation
  • # Main Business Optimization contact user account.
  • mainBusinessOptimizationContactUserAccount: UserAccountInformation
  • # Main Client Success contact user account.
  • mainClientSuccessContactUserAccount: UserAccountInformation
  • # How many orders for the client have been placed.
  • orderStatistics: OrderStatistics
  • # How much revenue the promotion has generated for the client.
  • clientSalesRevenueStatistics: ClientSalesRevenueStatistics
  • }