GraphQL INPUT_OBJECT

CreateHistoryEntryInput

Input for created history entry. History entries are detailed notes about the customer interactions and transaction events that occurred after an initial purchase.

link Definition

  • input CreateHistoryEntryInput {
  • # Unique ID of the purchase.
  • purchaseId: Int!
  • # Subject line for the event.
  • manualShort: String
  • # Additional information about the event.
  • manualComment: String
  • # The source of the contact, for example, whether the contact was initiated by the
  • # customer or internally in your organization.
  • historyNatureOfContact: HistoryNatureOfContactEnum!
  • # Specific reason for the contact.
  • historyReason: HistoryReasonEnum
  • # Way in which the contact was initiated.
  • historyContactMethod: HistoryContactMethodEnum
  • # Set to true to make the purchase history event visible for cleverbridge users
  • # only.
  • isCleverbridgeInternal: Boolean
  • # The contact link.
  • contactLink: String
  • }

link Required by