get https://api.banking.netevia.dev/api/UsersReward/v2/history
This API allows you to retrieve the reward accrual history with filtering options based on dates and reward types. There are 14 distinct types of rewards listed below, and this method also includes the history of point-to-cash exchanges. Essentially, this endpoint provides a comprehensive overview of all point-related activities, including earning, spending, and manual adjustments.
Date Filters:
- dateFrom: Starting date for the rewards history filter.
- dateTo: Ending date for the rewards history filter.
Reward Types:
Here is the list of reward types available in the system:
public enum RewardHistoryType
{
[Display(Name = "Spending Rewards")]
CashBack = 1,
[Display(Name = "Rewards for premium categories")]
Extra,
[Display(Name = "Spending Credit")]
ExtraCredit,
[Display(Name = "Refund", GroupName = "Hidden")]
Refund,
[Display(Name = "Welcome Bonus")]
Welcome,
[Display(Name = "Welcome Spending Bonus")]
WelcomeSpending,
[Display(Name = "Earned Credit Rewards")]
APR,
[Display(Name = "Earned Credit Spending Rewards")]
APRSpending,
[Display(Name = "Manual Adjustment")]
Manual,
[Display(Name = "Spending Rewards")]
ExtraSpendCashBack,
[Display(Name = "Exchange Rewards")]
ExchangePoints,
[Display(Name = "Transfer Out")]
Transfer,
[Display(Name = "Transfer In")]
TransferIn,
[Display(Name = "Gift Card Purchase")]
GiftCard
}
Reward Types Explained:
- CashBack: Rewards earned from spending.
- Extra: Premium category rewards.
- ExtraCredit: Credit-related rewards for spending.
- Refund: Refund activity (hidden in some views).
- Welcome: Welcome bonuses for new customers.
- WelcomeSpending: Bonuses for spending shortly after joining.
- APR: Earned credit-based rewards.
- APRSpending: Rewards for spending based on financial accounts.
- Manual: Manual reward adjustments.
- ExtraSpendCashBack: Additional spending rewards.
- ExchangePoints: Points exchanged for cash.
- Transfer: Points transferred out of the account.
- TransferIn: Points transferred into the account.
- GiftCard: Purchase of gift cards using points.