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. |
Request Formats
application/json, text/json
Sample:
{
"FolderId": "26120bce-e4b5-4c08-82ba-42f1598540eb",
"IsInLibrary": true,
"OrganisationId": "3524b661-a1ba-4516-847a-8936be436c65"
}
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>26120bce-e4b5-4c08-82ba-42f1598540eb</FolderId> <IsInLibrary>true</IsInLibrary> <OrganisationId>3524b661-a1ba-4516-847a-8936be436c65</OrganisationId> </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.