About this resource
Representation of a paged collection of Permission items
Properties
| Property | Description | Type |
|---|---|---|
| items | One page of this paged collection, which is a subcollection of the complete collection. | Collection of Permission items |
| page | The current page of this paged collection. | int32 |
| pageSize | The current page size of this paged collection. | int32 |
| skip | The current skip size of this paged collection. | int32 |
| take | The current take size of this paged collection. | int32 |
| totalCount | The total count of items in this paged collection, not just on the current page. | int64 |
Relations
Examples
Searching for permissions
The parameters are specified as HTTP headers.
GET /permissions HTTP/1.1 accept: application/hal+json page: 1 pageSize: 20
The parameters are specified as query string parameters.
GET /permissions?page=1&pagesize=10 HTTP/1.1