GET api/Licenses
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| RequireTotalCount | boolean |
None. |
|
| RequireGroupCount | boolean |
None. |
|
| IsCountQuery | boolean |
None. |
|
| IsSummaryQuery | boolean |
None. |
|
| Skip | integer |
None. |
|
| Take | integer |
None. |
|
| Sort | Collection of SortingInfo |
None. |
|
| Group | Collection of GroupingInfo |
None. |
|
| Filter | Collection of Object |
None. |
|
| TotalSummary | Collection of SummaryInfo |
None. |
|
| GroupSummary | Collection of SummaryInfo |
None. |
|
| Select | Collection of string |
None. |
|
| PreSelect | Collection of string |
None. |
|
| RemoteSelect | boolean |
None. |
|
| RemoteGrouping | boolean |
None. |
|
| ExpandLinqSumType | boolean |
None. |
|
| PrimaryKey | Collection of string |
None. |
|
| DefaultSort | string |
None. |
|
| StringToLower | boolean |
None. |
|
| PaginateViaPrimaryKey | boolean |
None. |
|
| SortByPrimaryKey | boolean |
None. |
|
| AllowAsyncOverSync | boolean |
None. |
Body Parameters
None.
Response Information
Resource Description
LoadResult| Name | Description | Type | Additional information |
|---|---|---|---|
| data | Collection of Object |
None. |
|
| totalCount | integer |
None. |
|
| groupCount | integer |
None. |
|
| summary | Collection of Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": [
{},
{}
],
"totalCount": 1,
"groupCount": 2,
"summary": [
{},
{}
]
}
application/xml, text/xml
Sample:
<LoadResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DevExtreme.AspNet.Data.ResponseModel">
<data xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:anyType />
<d2p1:anyType />
</data>
<groupCount>2</groupCount>
<summary xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:anyType />
<d2p1:anyType />
</summary>
<totalCount>1</totalCount>
</LoadResult>