Upcoming Features

Learn about new and upcoming features in development by the Cardlytics engineering and product teams

In Development

This section describes some of the new, upcoming features in development by the Cardlytics engineering and product teams.

These are intended to provide developers with a "look forward" to new features that our teams will be adding to the Publisher v2.0 API.

Upcoming features

FeatureDescription
Ad Rankings by UI sectionDescribes future support for additional ranking types that enables developers to rank ads by shopping category. These section-specific ad rankings will be returned as a Map titled "sections".

AdRedemptionState

ValueDescription
PROCESSINGAn auth transaction has been received for the Ad, and a redemption is being processed

RedemptionEligibility

The RedemptionEligibility enum determines a customer's ability to activate and redeem offers.

Enum Values

ValueDescription
ALLCustomers are eligible to activate and redeem all available offers.
NONECustomers are not eligible to activate or redeem offers.

Update to Create/Update Customer Endpoint

The Create/Update Customer API endpoints have been updated to include a new optional field: redemptionEligibility.


"redemptionEligibility": "ALL" | "NONE"

Customer API

PropertyTypeRequiredDescription
redemptionEligibilitystringrequiredThe RedemptionEligibility enum determines a customer's ability to activate and redeem offers.

Example JSON Object:

{
    "customers": [
        {
            "sourceCustomerId": "afa2r21-25f9-4501-b9db-e78afa73c0e3",
            "sourceParentCustomerId": "2e052a88-6ae1-4501-b9db-e78afa73c0e3",
            "organizationId": "50004",
            "postalCode": "78753",
            "country": "US",
            "customerCreationDate": "2017-01-01T08:00:00Z",
            "enrollmentStartDate": "2023-01-01T08:00:00Z",
            "enrollmentEndDate": "2023-01-01T08:00:00Z",
            "enrollmentOptInStatus": "ACTIVE",
            "redemptionEligibility": "ALL",
            "alertOptInStatus": ["ALL"],
            "targetingIndicator": "TARGET",
            "accounts": [
                {
                    "sourceAccountId": "42c57311-25f9-4501-b9db-e78afa73c0e3",
                    "sourceCustomerIds": [
                        "afa2r21-25f9-4501-b9db-e78afa73c0e3",
                        "2e052a88-6ae1-4b78-8d96-f3a037402567"
                    ],
                    "primarySourceCustomerId": "afa2r21-25f9-4501-b9db-e78afa73c0e3",
                    "status": "OPEN",
                    "type": "DDA",
                    "sourcePortfolioId": "76afcd28-b494-4b29-b7f2-3eb614a92f97",
                    "accountOpenDate": "2018-05-12T20:30:00Z",
                    "accountCloseDate": null,
                    "cards": [
                        {
                            "sourceAccountId": "42c57311-25f9-4501-b9db-e78afa73c0e3",
                            "sourceCustomerId": "afa2r21-25f9-4501-b9db-e78afa73c0e3",
                            "last4": "2345",
                            "iin": "123456",
                            "cardType": "CREDIT",
                            "status": "OPEN",
                            "networkIdentifier": 3,
                            "openDate": "2023-01-01T08:00:00Z",
                            "closeDate": null
                        }
                    ]
                }
            ]
        }
    ]
}