Cardlytics Customer Controller API

The customer-controller API from Cardlytics — 3 operation(s) for customer-controller.

Operations 3

GET /v2/customerProfile/getCustomerRewardSummary #
GET /v2/customerProfile/getCustomerProfile #
GET /v2/customerProfile/getCustomerAdRedemptions #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/cardlytics-customer-controller-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

cardlytics-customer-controller-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OpenAPI definition Customer Controller API
  version: v0
servers:
- url: https://publisher-uk-fiuat.cardlytics.com
  description: Generated server url
tags:
- name: customer-controller
paths:
  /v2/customerProfile/getCustomerRewardSummary:
    get:
      tags:
      - customer-controller
      operationId: getRewardsSummary
      parameters:
      - name: X-CDLX-Session-Token
        in: header
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RewardSummary'
  /v2/customerProfile/getCustomerProfile:
    get:
      tags:
      - customer-controller
      operationId: getCustomerProfile
      parameters:
      - name: X-CDLX-Session-Token
        in: header
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Customer'
  /v2/customerProfile/getCustomerAdRedemptions:
    get:
      tags:
      - customer-controller
      operationId: getCustomerAdRedemptions
      parameters:
      - name: X-CDLX-Session-Token
        in: header
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomerAdRedemptionResponse'
components:
  schemas:
    Card:
      type: object
      properties:
        sourceAccountId:
          type: string
        sourceCustomerId:
          type: string
        last4:
          type: string
        iin:
          type: string
        cardType:
          type: string
        status:
          type: string
        networkIdentifier:
          type: integer
          format: int32
        openDate:
          type: string
        closeDate:
          type: string
    CustomerAdRedemptionResponse:
      type: object
      properties:
        requestId:
          type: string
        redemptions:
          type: array
          items:
            $ref: '#/components/schemas/Redemption'
        ads:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/Ad'
    Customer:
      type: object
      properties:
        requestId:
          type: string
        sourceCustomerId:
          type: string
        institutionId:
          type: string
        organizationId:
          type: string
        postalCode:
          type: string
        country:
          type: string
        customerCreationDate:
          type: string
        enrollmentStartDate:
          type: string
        enrollmentEndDate:
          type: string
        enrollmentOptInStatus:
          type: string
          enum:
          - ACTIVE
          - INACTIVE
        alertOptInStatus:
          type: array
          items:
            type: string
            enum:
            - ALL
            - NEW
            - ACTIVATED
            - EXPIRING
            - REDEMPTION
            - CLOSE_THE_LOOP
            - MISSED_OPPORTUNITY
        targetingIndicator:
          type: string
          enum:
          - TARGET
          - DO_NOT_TARGET
        portfolios:
          type: array
          items:
            $ref: '#/components/schemas/Portfolio'
        accounts:
          type: array
          items:
            $ref: '#/components/schemas/Account'
    AdImageValue:
      type: object
      properties:
        large:
          $ref: '#/components/schemas/ImageURL'
        small:
          $ref: '#/components/schemas/ImageURL'
    Account:
      type: object
      properties:
        sourceAccountId:
          type: string
        sourceCustomerIds:
          type: array
          items:
            type: string
        primarySourceCustomerId:
          type: string
        status:
          type: string
          enum:
          - OPEN
          - CLOSED
          - DISPUTE
          - FRAUD
        type:
          type: string
          enum:
          - PPD
          - MMA
          - CRD
          - DDA
          - SAV
          - SBCRD
          - SBDDA
          - SBS
        sourcePortfolioId:
          type: string
        accountOpenDate:
          type: string
        accountCloseDate:
          type: string
        cards:
          type: array
          items:
            $ref: '#/components/schemas/Card'
    Image:
      type: object
      properties:
        type:
          type: string
          example: IMAGE_URL
          enum:
          - IMAGE_URL
          - AD_COPY
          - CALL_TO_ACTION_LINKS
        value:
          $ref: '#/components/schemas/AdImageValue'
    ImageURL:
      type: object
      properties:
        url:
          type: string
        width:
          type: integer
          format: int32
        height:
          type: integer
          format: int32
    Text:
      type: object
      properties:
        type:
          type: string
          example: AD_COPY
          enum:
          - IMAGE_URL
          - AD_COPY
          - CALL_TO_ACTION_LINKS
        value:
          type: object
          additionalProperties:
            type: string
    CallToActionLink:
      type: object
      properties:
        type:
          type: string
          example: WEB_LINK
        value:
          type: string
    Portfolio:
      type: object
      properties:
        sourcePortfolioId:
          type: string
        institutionId:
          type: string
        institutionName:
          type: string
          deprecated: true
        portfolioName:
          type: string
        tagline:
          type: string
          deprecated: true
        description:
          type: string
          deprecated: true
        rewardCurrencyUnit:
          type: string
        rewardToCurrencyConversionRate:
          type: string
    CallsToAction:
      type: object
      properties:
        type:
          type: string
          example: CALL_TO_ACTION_LINKS
          enum:
          - IMAGE_URL
          - AD_COPY
          - CALL_TO_ACTION_LINKS
        value:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/CallToActionLink'
    AdReward:
      type: object
      properties:
        rewardType:
          type: string
          enum:
          - PERCENT_AMOUNT_PURCHASE
          - FIXED_AMOUNT_PURCHASE
          - METERED_AMOUNT_PURCHASE
        rewardAmount:
          type: number
          format: float
        maxRewardAmount:
          type: number
          format: float
        isMultiRedemption:
          type: boolean
        purchaseRequirement:
          $ref: '#/components/schemas/PurchaseRequirement'
    Redemption:
      type: object
      properties:
        redemptionId:
          type: string
        adId:
          type: string
        amount:
          type: number
          format: float
        redemptionDate:
          type: string
          format: date-time
        sourceCustomerId:
          type: string
        sourceAccountId:
          type: string
        redeemingTransactionAmount:
          type: number
          format: float
        transactionId:
          type: string
        rewardSettlementRunDate:
          type: string
          format: date-time
    RewardSummary:
      type: object
      properties:
        requestId:
          type: string
        rewardsSummary:
          $ref: '#/components/schemas/RewardSummaryTotals'
    AdAssetList:
      type: object
      properties:
        logo:
          $ref: '#/components/schemas/Image'
        largeRectangle:
          $ref: '#/components/schemas/Image'
        smallRectangle:
          $ref: '#/components/schemas/Image'
        copy:
          $ref: '#/components/schemas/Text'
        callsToAction:
          $ref: '#/components/schemas/CallsToAction'
    RewardSummaryTotals:
      type: object
      properties:
        allTime:
          $ref: '#/components/schemas/RewardSummary'
        pending:
          $ref: '#/components/schemas/RewardSummary'
        yearToDate:
          $ref: '#/components/schemas/RewardSummary'
        previousCalendarYear:
          $ref: '#/components/schemas/RewardSummary'
        previousMonth:
          $ref: '#/components/schemas/RewardSummary'
        previousTwelveMonths:
          $ref: '#/components/schemas/RewardSummary'
        currentMonth:
          $ref: '#/components/schemas/RewardSummary'
    Ad:
      type: object
      properties:
        adType:
          type: string
          enum:
          - CASH_BACK_OFFER
        adServeToken:
          type: string
        startDate:
          type: string
          format: date-time
        endDate:
          type: string
          format: date-time
        activationDate:
          type: string
          format: date-time
        merchantName:
          type: string
        sections:
          type: array
          items:
            type: string
            enum:
            - Email
            - SMS
            - MMS
            - Transaction
            - Summary
            - Dashboard
            - Landing
            - OnboardingPage
            - LatestOffers
            - ExpiringSoon
            - RewardSummaryListView
            - FeaturedOffers
            - EntertainmentCategory
            - FoodCategory
            - RetailCategory
            - ServicesCategory
            - TravelCategory
        reward:
          $ref: '#/components/schemas/AdReward'
        activationState:
          type: string
          enum:
          - NEW
          - SERVED
          - ACTIVATED
        visibilityState:
          type: string
          enum:
          - VISIBLE
          - PARKED
        redemptionState:
          type: string
          enum:
          - PROCESSING
          - FULLY_REDEEMED
        assets:
          $ref: '#/components/schemas/AdAssetList'
    PurchaseRequirement:
      type: object
      properties:
        minSpendAmount:
          type: number
          format: float
        purchaseChannels:
          type: array
          items:
            type: string
            enum:
            - InStore
            - Online
            - PayAtPump
            - App
            - Convenience
        purchaseTypes:
          type: array
          items:
            type: string
            enum:
            - Membership
            - Subscription
            - Fuel