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": [
"86a6a635-c3ba-47c7-92c9-6657499144a1",
"3a4fbb4d-38de-4df1-8f6e-95a3d3a092b5"
],
"SchemaId": "78b3faa8-0889-48b0-8dc7-1202bda3e494",
"UserId": "ba3eb6fb-675d-4d8e-a63d-8e049d5fb181",
"TenantId": "4e9d9b2f-d556-4b3e-adec-0ca2a77d7124",
"IsInLibrary": true,
"FolderId": "868b1ee6-1fbf-4c97-8a09-d642db7c8ec3",
"FolderIds": [
"38b631e2-9e18-4749-b280-6a09630ec8c5",
"9cb0b5b4-509b-42eb-8bed-b9c6096686e8"
],
"DateFrom": "2026-01-09T14:33:46.5029368+00:00",
"DateTo": "2026-01-09T14:33:46.5029368+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-09T14:33:46.5029368+00:00</DateFrom>
<DateTo>2026-01-09T14:33:46.5029368+00:00</DateTo>
<FolderId>868b1ee6-1fbf-4c97-8a09-d642db7c8ec3</FolderId>
<FolderIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>38b631e2-9e18-4749-b280-6a09630ec8c5</d2p1:guid>
<d2p1:guid>9cb0b5b4-509b-42eb-8bed-b9c6096686e8</d2p1:guid>
</FolderIds>
<Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>86a6a635-c3ba-47c7-92c9-6657499144a1</d2p1:guid>
<d2p1:guid>3a4fbb4d-38de-4df1-8f6e-95a3d3a092b5</d2p1:guid>
</Ids>
<IsInLibrary>true</IsInLibrary>
<IsSelectable>true</IsSelectable>
<SchemaId>78b3faa8-0889-48b0-8dc7-1202bda3e494</SchemaId>
<TenantId>4e9d9b2f-d556-4b3e-adec-0ca2a77d7124</TenantId>
<UserId>ba3eb6fb-675d-4d8e-a63d-8e049d5fb181</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.