Enables scripted content fragments to list content subscribers
Methods
List
List subscribers to the specified content. OBSOLETE in v12: Use core_v2_contentSubscriptions.List(contentId, contentTypeId, options) instead.
Velocity
#set($pagedListResponse = $core_v2_contentSubscribers.List($contentId, "%{ IncludeApplicationSubscriptions = $includeApplicationSubscriptionsArg, PageIndex = $pageIndexArg, PageSize = $pageSizeArg, TypeId = $typeIdArg }"))
JavaScript
var pagedListResponse = core_v2_contentSubscribers.List(contentId, { IncludeApplicationSubscriptions: includeApplicationSubscriptionsArg, PageIndex: pageIndexArg, PageSize: pageSizeArg, TypeId: typeIdArg });
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
contentId | Guid | Content Id | Required | ||
options | Options | Set of optional parameters including: | Required | ||
IncludeApplicationSubscriptions | Boolean | Include application subscriptions in list. | Optional | ||
PageIndex | Int32 | Page index for the results. | Optional | ||
PageSize | Int32 | Page size for the results. | Optional | ||
TypeId | Guid | Optional Type Id of the subscription. | Optional |