v2.3.0: Multiple personal coupons creation endpoint, Loyalty and Referrals counters and Export Endpoints
Summary
Management API
Introduce createCouponsForMultipleRecipients
Endpoint
An endpoint to allow creation of multiple coupons of the same configuration for up to 1,000 recipients at once.
Expose export endpoints as integral part of the SDK
All of our CSV export endpoints are accessible via the Web Application from the corresponding entity pages (refer to our Help Center for an example regarding Coupons).
Now these are also available endpoints as part of the SDK (links to our developer docs):
- Coupons Export
- Customer Sessions Export
- Effects Export
- Customer Loyalty Balance Export
- Customer Loyalty Ledgers Log Export
Example code snippet demonstrating consuming and printing the lines of a Customer Loyalty Balance Export using the encoding/csv
package:
import (
"context"
"encoding/csv"
"fmt"
"strings"
talon "github.com/talon-one/talon_go"
)
// ...preparing api client...
// An example could be seen at the repository's README file: https://github.com/talon-one/talon_go#management-api
export, _, err := managementClient.ManagementApi.
ExportLoyaltyBalance(managerAuthContext, "1").
Execute()
if err != nil {
fmt.Printf("Error occurred while requesting ExportLoyaltyBalance: %s", err)
// handle error / return / panic
return
}
exportCSVReader := csv.NewReader(strings.NewReader(export))
records, err := exportCSVReader.ReadAll()
if err != nil {
fmt.Printf("Error occurred while processing export CSV: %s", err)
// handle error / return / panic
return
}
fmt.Printf(">>`ExportLoyaltyBalance` records:\n%v", records)
// processing data using records ...
Expose destroySession
Endpoint
Expose an existing endpoint to allow destroying a bearer token used in the context of the management-api.
This endpoint imitates a "logout" function and will make the attached token invalid for consequent requests.
Introduce loyalty effects related and referrals creation counters on Campaign entities
As part of the newly added budgets to campaigns (see relevant Help Center Section), we have added new counters on campaigns with regard to loyalty and referrals:
CreatedLoyaltyPointsCount
: Total number of loyalty points created by rules in this campaignCreatedLoyaltyPointsEffectCount
: Total number of loyalty point creation effects triggered by rules in this campaignRedeemedLoyaltyPointsCount
: Total number of loyalty points redeemed by rules in this campaignRedeemedLoyaltyPointsEffectCount
: Total number of loyalty point redemption effects triggered by rules in this campaignReferralCreationCount
: Total number of referrals created by rules in this campaign
⚠️ ⚠️ Breaking Change: Fix Campaign's DiscountCount
type from int32
to float32
Campaign's DiscountCount
counter property was all along calculated as a floating decimal number by our system.
From this release on the returned values will be floating decimals and not cut-off integers:
- **DiscountCount** | Pointer to **int32** | Total amount of discounts redeemed in the campaign. | [optional]
+ **DiscountCount** | Pointer to **float32** | Total amount of discounts redeemed in the campaign. | [optional]
Integration API
Improve Responses Transparency
We are constantly extending and improving our integration API to provide our consumers with the best transparency regarding what exactly has happened within their requests.
We have added new data points to our v2 endpoints effects in order to improve the transparency we aspire for:
- If an effect was triggered because of a specific coupon the effect will now include this coupon ID, see
Effect.md
- When a coupon is rejected we attach more details regarding the origin of the failure in
RejectCouponEffectProps
:ConditionIndex
- The index of the condition that caused the rejection of the couponEffectIndex
- The index of the effect that caused the rejection of the couponDetails
- More details about the failure (if available)
- The same applies for referrals, when a referral is rejected we attach more details regarding the origin of the failure in
RejectReferralEffectProps
:ConditionIndex
- The index of the condition that caused the rejection of the referralEffectIndex
- The index of the effect that caused the rejection of the referralDetails
- More details about the failure (if available)
Moreover, we have introduced a new response content, ruleFailureReasons
, which when requested will attach to the response a collection containing all failed rules, with details (see the RuleFailureReason
model) to help narrowing down failures and further debugging efforts to a specific single condition or effect that caused the failure.
One "gotcha" to keep in mind: in order to maximize transparency, and due to the fact that we do not know in advance which campaign in the application the request targets, the list contains a collection of all failure reasons.
Meaning that, it might have "white noise" with data about failures that could be considered as "obvious" to the consumer. Therefore, we suggest always filtering the list by the campaign id that was expected to trigger and did not.
Attach Loyalty Program ID in responses
When the consumer requires that the response will contain the details of loyalty programs involved in processing the requests, we now attach the identifier of the loyalty program to the returned LoyaltyProgramLedgers
models.
The idea behind attaching the identifier is to help streamline further potential requests to our Management API with regard to details about a Loyalty Program, for example getLoyaltyStatistics or getLoyaltyPoints, that require the program identifier as part of the URI of the endpoint.
⚠️ A reminder of The Deprecation Notice: Integration API@v1 endpoints
The deprecation was introduced already in the last release of the SDK, here is a kind reminder of the deprecation notices for Integration API@v1 endpoints:
These endpoints will be flagged deprecated on 15.07.2021, meaning support for requests to these endpoints will end on that date. We will not remove the endpoints, and they will still be accessible for you to use.
We highly encourage migrating to the correspondent v2 endpoints for easier and more granular integration, as well as new features support (See our developer docs section about API V2.0).