GetChannelCatalogItems

From Gvp-public
Revision as of 16:51, 11 February 2016 by Id02660 (talk | contribs)
Jump to navigation Jump to search

Description

Get all items assigned to a Channel.

The result will return a list of CatalogItem that could be one of these CatalogItemType. It can returns VoD, Live Contents and both. The result is default ordered by the Default ( 0 ) SortType or sorted by a field specified in the request using SortType enumeration. A parameter SortOrder has been implemented in a way to order ascending or descending results as well.

In case the requested SortType is 0 (Default) gvp.api.neuromancer will order the results depending on the Channel LiveDefaultOrder and VoDDefaultOrder properties in the Channels Page. In case the Channel is configured with ContentType equals to Live, LiveDefaultOrder will be used; otherwise, VoDDefaultOrder will be taken into consideration. Default configuration in LiveDefaultOrder/VoDDefaultOrder orders the results by their IDs.

The result could be filtered by SubscriptionType and CatalogItemType.

The result also can be filtered by the adult content. Using the AdultFilterType options: All, AdultOnly and NonAdultOnly.

Similar to GetChannelSimpleMovies but it has better performance.

Deprecated Parameter:

-The parameter includeChild was deprecated in the 3.2 GVP version.

Parameters

  • token (String, required)
A valid token for identifying the API session context. The token can be anonymous or logged.
  • offset (int, optional)
The offset number of the returned values for this request
  • limit (int, optional)
The limit number of values for this request
  • channelId (int, required)
The channel id that want to return the content registered inside then.
List of SubscriptionType separated by comma, to filter the result required.
List of CatalogItemTypeId separated by comma to filter the result required.
Type to represent Unknown, All, AdultOnly or NonAdultOnly. If the content is for adult and/or not adult or both.
SortTypeId to order result by the chosen field
SortOrderId to order ascending/descending. Ascending default (if not provided)


Returns

Returns a JSON object containing an array of CatalogItem.

Example:

{

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

}


Exceptions

None


Caching

This method is cached.


Known issues

None


Version history

API Version Number Change description Changes author
1.0 Initial method design Harley Cabral
3.2

New:
- catalogItemTypeFilter
- sortType
- sortOrder

Deprecated: - includeChildMovies
- MovieType
- ProductTypeFilter

Ricardo Calvo


See also