Get All Loyalty Point Transactions Parameters
data class GetAllLoyaltyPointTransactionsParameters(val rewardItemId: String? = null, val rewardActionKey: String? = null, val createdSince: Calendar? = null, val createdUntil: Calendar? = null, val sort: List<String>? = null, val limit: Int? = null, val offset: Int? = null)
Data class representing parameters for retrieving loyalty point transaction history.
Parameters
reward Item Id
Filter transactions by reward item.
reward Action Key
Filter by the action that triggered the reward.
created Since
Filter transactions created on or after this date (inclusive). Represented in the form of Calendar.
created Until
Filter transactions created on or before this date (inclusive). Represented in the form of Calendar.
sort
Sort order criteria (e.g. createdAt,desc).
limit
Maximum number of transactions to return.
offset
Get transactions from a specific starting point.