ReportHistoryPagedRequest¶
| Field | NULL | Description | Note |
|---|---|---|---|
| reportId string (GUID) |
Y | The id of the report if available | |
| categoryId string (GUID) |
Y | The id of the category if available | Inherited from ReportPagedRequest |
| subCategoryId string (GUID) |
Y | The id of the sub-category if available | Inherited from ReportPagedRequest |
| timestampOffset real number |
The timestamp offset. See User Setup. | Inherited from ReportPagedRequest |
Inherited fields:
PagedRequest¶
| Field | NULL | Description | Note |
|---|---|---|---|
| tenantId string (GUID) |
Y | The id of the tenant | |
| criteria array of objects |
An array of SearchCriteria objects | ||
| sortOrders array of objects |
An array of SortOrder objects | ||
| parentIds array of strings (GUIDs) |
Ids of the parents | ||
| pageIndex integer |
The index of the page | Inherited from PagingInfo | |
| pageSize integer |
The size of the page | Inherited from PagingInfo | |
| total integer |
The total number of rows | Inherited from PagingInfo | |
| skipItems integer |
Skip items | Inherited from PagingInfo | |
| isLastPage boolean |
Whether this is the last page | Inherited from PagingInfo |
PagedRequest Sample:
{
"criteria": [
{
"key": "All",
"value": "",
"operation": 1
}
],
"pageIndex": 1,
"pageSize": 10,
"sortOrders": [
{
"key": "shareWith",
"descending": true
}
]
}
ReportHistoryPagedRequest Sample:
{
"reportId" : "41023c5b-3fe5-4a62-8ecf-7aae8974f63f",
"tenantId" : null,
"criteria" : [{
"key" : "All",
"value" : "",
"operation" : 1
}
],
"pageIndex" : 1,
"pageSize" : 10,
"sortOrders" : [{
"key" : "version",
"descending" : true
}
]
}