DataModelAccessPagedRequest

Field NULL Description Note
roleId
string (GUID)
  The id of the role  
visibleQuerySourcesTree
array of objects
  An array of DataSourceItem objects  

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
    }
  ]
}
DataModelAccessPagedRequest Sample:
{
   "tenantId":"c39a4500-b902-4e5b-ae86-901c09b71516",
   "roleId":"101991da-d576-488b-a0aa-4df03512fbbb",
   "skipItems":0,
   "pageSize":100,
   "parentIds":[],
   "visibleQuerySourcesTree":[],
   "criteria":[
      {
         "key":"DataSourceName",
         "value":""
      },
      {
         "key":"ShowCheckedQuerySource",
         "value":false
      }
   ]
}