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 client.
- : Long
- # Unique ID of the purchase.
- : Long
- # Subject line for the event.
- : String
- # Additional information about the event.
- : String
- # The source of the contact, for example, whether the contact was initiated by the
- # customer or internally in your organization.
- : HistoryNatureOfContactEnum!
- # Specific reason for the contact.
- : HistoryReasonEnum
- # Way in which the contact was initiated.
- : HistoryContactMethodEnum
- # Set to true to make the purchase history event visible for cleverbridge users
- # only.
- : Boolean
- # The contact link.
- : String
- }