These docs are for v2.0. Click to read the latest docs for v2.1.

listCustomerSubscriptions

Returns list of all your subscription offers purchased by the customer.

📘

This method will list only subscriptions which didn't expire (e.g returns the subscriptions for which the customer has still access rights to the content). Parameter 'status' in response may take value 'active' or 'cancelled'. Value 'active' means subscription will renew after expiration time, value 'cancelled' means user resigned and it will not be prolonged after it expires. Subscriptions which were cancelled and expired won't be listed by this method.

🚧

This method should not be used for real-time entitlement checks. Use getAccessStatus or getAccessibleTags instead.

📘

You can try that method by clicking here

Parameters

NameTypeDescription
publisherToken*stringYou can find your publisher token at api-keys page.
customerEmail*stringSet customer email which you want to get subscription list from
offset*integerInteger, from which element you want to get results.
limit*integerInteger, how many elements you want to get

Result parameters

NameTypeDescription
itemsobjectInformation about each subscription
-subscriptionIdintegerSubscription identifier at Cleeng
-offerIdstringSubscription offer ID, e.g. S123123123_US
-statusstringCurrent status of subscription, 'active' means subscription will renew after expiration time and 'cancelled' means user resigned and it will not be prolonged after it expires
-expiresAtintegerEnd of subscription period
-nextPaymentPricefloatPrice for upcoming subscription period
-nextPaymentCurrencystringPrice currency for upcoming subscription period
-paymentGatewaystringExample values: adyen, ingenico, moneris, apple, paypal, roku, amazon, android
-paymentMethodstringExample values: mc, amex, visa, ios, tvos, paypal, roku, amazon, android
-externalPaymentIdstringExternal Id of the latest payment for this subscription
totalItemCountintegerTotal amount of your subscription offers currently owned by user
customerIdintegerCustomer identifier at Cleeng

API Request/Response

Request

{    
  "method": "listCustomerSubscriptions",    
  "params": {    
    "publisherToken": "TeurE3xRXcFtF7gSbhYCXx_qC1IrvnDWGejDv114-OE0cdZ9",     "customerEmail": "[email protected]",    
    "offset": "0",    
    "limit": "10"    
  },    
  "jsonrpc": "2.0",    
  "id": 1    
}

Response

{
  "result": {
    "items": [
      {
        "subscriptionId": 955044431,
        "offerId": "S123123123_US",
        "status": "active",
        "expiresAt": 1364146427,
        "nextPaymentPrice": 21.98,
        "nextPaymentCurrency": "USD",
        "paymentGateway": "apple",
        "paymentMethod": "tvos"
        "externalPaymentId": ""
      },
      {
        "subscriptionId": 967464836,
        "offerId": "S321321321_US",
        "status": "active",
        "expiresAt": 1364146427,
        "nextPaymentPrice": 1.52,
        "nextPaymentCurrency": "USD",
        "paymentGateway": "android",
        "paymentMethod": "android"
        "externalPaymentId": ""
      }
    ],
    "totalItemCount": 2
    "customerId": 801798658
  },
  "id": "1",
  "jsonrpc": "2.0"
}

PHP Example

<?php
    $customerEmail = '[email protected]';

    $cleengApi = new Cleeng_Api();
    $cleengApi->setPublisherToken('Y72a8Cr0KQciwzU7DbOcSXOFL1gT9a6gIYRb6hhOvCdPaxKW');

    $cleengApi->listCustomerSubscriptions($customerEmail, 0, 10);
?>