Log entry for a given loyalty card transaction.
Name | Type | Description | Notes |
---|---|---|---|
created | OffsetDateTime | Date and time the loyalty card transaction occurred. | |
programId | Integer | ID of the loyalty program. | |
cardIdentifier | String | The alphanumeric identifier of the loyalty card. | |
applicationId | Integer | The ID of the Application that owns this entity. | [optional] |
sessionId | Integer | The internal ID of the session. | [optional] |
customerSessionId | String | ID of the customer session where the transaction occurred. | [optional] |
type | TypeEnum | Type of transaction. Possible values: - `addition`: Signifies added points. - `subtraction`: Signifies deducted points. | |
name | String | Name or reason of the loyalty ledger transaction. | |
startDate | String | When points become active. Possible values: - `immediate`: Points are immediately active. - a timestamp value: Points become active at a given date and time. | |
expiryDate | String | Date when points expire. Possible values are: - `unlimited`: Points have no expiration date. - `timestamp value`: Points become active from the given date. | |
subledgerId | String | ID of the subledger. | |
amount | BigDecimal | Amount of loyalty points added or deducted in the transaction. | |
id | Integer | ID of the loyalty ledger entry. |
Name | Value |
---|---|
ADDITION | "addition" |
SUBTRACTION | "subtraction" |