GET api.ashx/v2/reviewablecontent.{json|xml}
Request Parameters
| Name | Type | Location | Description | Required | Default | Options |
|---|---|---|---|---|---|---|
| ApplicationId | Guid | Query String | Filter reviewable content items to items with a specific application id. | Optional | ||
| ApplicationTypeId | Guid | Query String | Filter reviewable content items to items with a specific application type id. | Optional | ||
| AssigneeId | Guid | Query String | Filter reviewable content items to items with a specific assignee. | Optional | ||
| AuthorId | Guid | Query String | Filter reviewable content items to items with a specific author. | Optional | ||
| ContainerId | Guid | Query String | Filter reviewable content items to items with a specific container id. | Optional | ||
| ContainerTypeId | Guid | Query String | Filter reviewable content items to items with a specific container type id. | Optional | ||
| ContentId | Guid | Query String | Filter reviewable content items to a specific content id. | Optional | ||
| ContentTypeId | Guid | Query String | Filter reviewable content items to items with a specific content type id. | Optional | ||
| PageIndex | int | Query String | Page of results to return | Optional | ||
| PageSize | int | Query String | Number of results to return | Optional | ||
| SortBy | Guid | Query String | Accepted values are: CreatedDate (default), LastActionDate, AuthorDisplayName, PublishedDate | Optional | ||
| SortOrder | string | Query String | Accepted values are: Ascending, Descending | Optional |
Example Requests
Widget Javascript
jQuery.telligent.evolution.get({
url: jQuery.telligent.evolution.site.getBaseUrl() + 'api.ashx/v2/reviewablecontent.json'
}).then(function(response) {
// use response
});