Enables scripted content fragments to interact with reviewable content.
Methods
List
Get a list of reviewable content
Velocity
#set($pagedListResponse = $core_v2_reviewableContent.List("%{ ApplicationId = $applicationIdArg, ApplicationTypeId = $applicationTypeIdArg, AssigneeId = $assigneeIdArg, AuthorId = $authorIdArg, ContainerId = $containerIdArg, ContainerTypeId = $containerTypeIdArg, ContentId = $contentIdArg, ContentTypeId = $contentTypeIdArg, PageIndex = $pageIndexArg, PageSize = $pageSizeArg, SortBy = $sortByArg, SortOrder = $sortOrderArg }"))
JavaScript
var pagedListResponse = core_v2_reviewableContent.List({ ApplicationId: applicationIdArg, ApplicationTypeId: applicationTypeIdArg, AssigneeId: assigneeIdArg, AuthorId: authorIdArg, ContainerId: containerIdArg, ContainerTypeId: containerTypeIdArg, ContentId: contentIdArg, ContentTypeId: contentTypeIdArg, PageIndex: pageIndexArg, PageSize: pageSizeArg, SortBy: sortByArg, SortOrder: sortOrderArg });
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
options | Options | Set of optional parameters including: | Required | ||
ApplicationId | Guid | Filter reviewable content items to items with a specific application id. | Optional | ||
ApplicationTypeId | Guid | Filter reviewable content items to items with a specific application type id. | Optional | ||
AssigneeId | Int32 | Filter reviewable content items to items with a specific assignee. | Optional | ||
AuthorId | Int32 | Filter reviewable content items to items with a specific author. | Optional | ||
ContainerId | Guid | Filter reviewable content items to items with a specific container id. | Optional | ||
ContainerTypeId | Guid | Filter reviewable content items to items with a specific container type id. | Optional | ||
ContentId | Guid | Filter reviewable content items to a specific content id. | Optional | ||
ContentTypeId | Guid | Filter reviewable content items to items with a specific content type id. | Optional | ||
PageIndex | Int32 | Specify the page number of paged results to return. Zero-based index. | Optional | 0 | |
PageSize | Int32 | Specify the number of results to return per page. | Optional | 20 | |
SortBy | String | Sort By | Optional | CreatedDate | AuthorDisplayName, CreatedDate, LastActionDate, PublishedDate |
SortOrder | String | Sort Order | Optional | Ascending | Ascending, Descending |