POST api/Assets/select/{pageNumber}/{pageSize}
Retrieves a paged list of assets that match the given criteria.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageNumber |
The current page number. |
integer |
Required |
| pageSize |
The number of records per page. |
integer |
Required |
Body Parameters
The criteria model to filter assets by.
AssetFilterCriteria| Name | Description | Type | Additional information |
|---|---|---|---|
| FolderId | globally unique identifier |
None. |
|
| IsInLibrary | boolean |
None. |
|
| OrganisationId | globally unique identifier |
None. |
|
| TenantId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"FolderId": "55fd45a2-1bca-43f0-bc9b-8cbfe18e36b6",
"IsInLibrary": true,
"OrganisationId": "0ba05973-126c-4e58-9f95-95adacb59bd8",
"TenantId": "758932aa-c29c-49ab-826d-9e251d596cfc"
}
application/xml, text/xml
Sample:
<AssetFilterCriteria xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Design.Models.FilterCriteria"> <FolderId>55fd45a2-1bca-43f0-bc9b-8cbfe18e36b6</FolderId> <IsInLibrary>true</IsInLibrary> <OrganisationId>0ba05973-126c-4e58-9f95-95adacb59bd8</OrganisationId> <TenantId>758932aa-c29c-49ab-826d-9e251d596cfc</TenantId> </AssetFilterCriteria>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.