GetUserSubscriptions

From Gvp-public
Revision as of 20:00, 18 September 2014 by Rcalvo (talk | contribs)
Jump to navigation Jump to search

Description

Returns the list of Subscription objects that belong to the user. This method can only be accessed with a valid logged token (not accessible by anonymous).

It automatically filters the results to return only subscription types Normal (1) and AllPlaylist (2) (see SubscriptionType enumeration).

It also filters out Subscriptions with SubscriptionPurchaseType = Provisioning Only, returning only Bottom Up and Both.

Parameters

  • token (String, required)
A valid token for identifying the API session context and logged user
  • offset (int, optional)
The offset number of the returned values for this request
  • limit (int, optional)
The limit number of values for this request
  • applyProvisioningFilter (bool, optional)
<spam style='color: green'>((NEW IN 2.4)</spam>
    false (default value): the method will return Subscriptions with Purchase Type in (Both, ApiOnly).
    true: the method will return Subscriptions with Purchase Type in (Both, ApiOnly, ProvisioningOnly). 


Returns

Returns a JSON object containing an array of Subscription.

Example:

{

"Offset": 0,
"Limit": 100,
"Count": 6,
"List":
[ Array of Subscription objects ]

}


Exceptions


Caching

This method cannot be cached.


Known issues

None


Version history

API Version Number Change description Changes author
1.0 Initial method design Harley Cabral 2.4 New parameter applyProvisioningFilter Ricardo Calvo


See also