Click or drag to resize

PageCommandsServicesGetContentItemUsageReport Method


Retrieves all references to other content items, of given content item

Namespace:  IngeniuxCMService
Assembly:  IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.3.169
Syntax
public XHRServiceResponseGeneric<ContentItemUsagePaginatedResult> GetContentItemUsageReport(
	DojoGridPaginatedRequest filter
)

Parameters

filter
Type: DojoGridPaginatedRequest

Filtering criteria

Examples

Sample JSON input

JavaScript
{
  "id": "x3",
  "count": 50,
  "start": 0
}

Return Value

Type: XHRServiceResponseGenericContentItemUsagePaginatedResult

List of usage entries, which are fields and the reference

Examples

Sample JSON return

JavaScript
{
  "ContentFreezeEndTime": "",
  "ContentFreezeStartTime": "",
  "code": 0,
  "error": null,
  "message": {
    "rows": [
      {
        "name": "Site Control",
        "id": "x7",
        "checkedIn": true,
        "elementName": "LogoLink",
        "elementType": "IGX_LINK" 
      },
      {
        "name": "Site Control",
        "id": "x7",
        "checkedIn": true,
        "elementName": "TopNavigation",
        "elementType": "IGX_NAVIGATION"
      },
      {
        "name": "Mad Max: Fury Road",
        "id": "x8",
        "checkedIn": false,
        "elementName": "Link",
        "elementType": "IGX_LINK"
      }
    ],
    "totalCount": 3
  }
}
See Also