POST api/datafiles/select/{pageNumber}/{pageSize}
Retrieves a paged list of data files that match the provided criteria.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageNumber |
The page number to retrieve. |
integer |
Required |
| pageSize |
The number of records per page. |
integer |
Required |
Body Parameters
The criteria model to filter data files to.
DataFilesFilterCriteriaDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Ids | Collection of globally unique identifier |
None. |
|
| SchemaId | globally unique identifier |
None. |
|
| UserId | globally unique identifier |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| IsInLibrary | boolean |
None. |
|
| FolderId | globally unique identifier |
None. |
|
| FolderIds | Collection of globally unique identifier |
None. |
|
| DateFrom | date |
None. |
|
| DateTo | date |
None. |
|
| DataSource | string |
None. |
|
| IsSelectable | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"Ids": [
"4983f04b-deae-45c0-b70b-6fed50c6fe72",
"37652114-822a-4de5-86ed-af4324ac2473"
],
"SchemaId": "72aca00b-f0f5-482e-bdd1-749dd25afe8a",
"UserId": "3eab9317-8632-4d33-8135-011d8d43b99f",
"TenantId": "5eeda1bb-bcc2-4859-b057-9abc43735180",
"IsInLibrary": true,
"FolderId": "1eba58d9-79db-406e-948c-169b6d8f7c95",
"FolderIds": [
"d0c5bd00-9714-461d-90ee-f432205bad4e",
"959826da-4261-4e6a-a062-14bdd1abd0ca"
],
"DateFrom": "2026-01-07T07:24:15.1274958+00:00",
"DateTo": "2026-01-07T07:24:15.1274958+00:00",
"DataSource": "sample string 1",
"IsSelectable": true
}
application/xml, text/xml
Sample:
<DataFilesFilterCriteriaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.DataManagement.Models.FilterCriteria">
<DataSource>sample string 1</DataSource>
<DateFrom>2026-01-07T07:24:15.1274958+00:00</DateFrom>
<DateTo>2026-01-07T07:24:15.1274958+00:00</DateTo>
<FolderId>1eba58d9-79db-406e-948c-169b6d8f7c95</FolderId>
<FolderIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>d0c5bd00-9714-461d-90ee-f432205bad4e</d2p1:guid>
<d2p1:guid>959826da-4261-4e6a-a062-14bdd1abd0ca</d2p1:guid>
</FolderIds>
<Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>4983f04b-deae-45c0-b70b-6fed50c6fe72</d2p1:guid>
<d2p1:guid>37652114-822a-4de5-86ed-af4324ac2473</d2p1:guid>
</Ids>
<IsInLibrary>true</IsInLibrary>
<IsSelectable>true</IsSelectable>
<SchemaId>72aca00b-f0f5-482e-bdd1-749dd25afe8a</SchemaId>
<TenantId>5eeda1bb-bcc2-4859-b057-9abc43735180</TenantId>
<UserId>3eab9317-8632-4d33-8135-011d8d43b99f</UserId>
</DataFilesFilterCriteriaDto>
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.