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": [
"493ee575-cb75-4c95-8c8b-408cbd43f7a4",
"db9bb799-3dab-445d-95d7-7a0220f86a16"
],
"SchemaId": "c7fc7cbe-6256-4316-b959-7be873d223d0",
"UserId": "fef8b198-b571-4ef2-a5ac-6498f47116ee",
"TenantId": "9fa3918c-993d-431d-b4cb-d798a3e10d52",
"IsInLibrary": true,
"FolderId": "858ba276-46b2-44c7-9114-a54d6e9ac809",
"FolderIds": [
"c2224fac-cab9-4c2b-9d48-eeee1ebbc9b1",
"8f290b5c-212c-463c-aa08-6c25001f115d"
],
"DateFrom": "2026-01-10T12:29:35.7571099+00:00",
"DateTo": "2026-01-10T12:29:35.7571099+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-10T12:29:35.7571099+00:00</DateFrom>
<DateTo>2026-01-10T12:29:35.7571099+00:00</DateTo>
<FolderId>858ba276-46b2-44c7-9114-a54d6e9ac809</FolderId>
<FolderIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>c2224fac-cab9-4c2b-9d48-eeee1ebbc9b1</d2p1:guid>
<d2p1:guid>8f290b5c-212c-463c-aa08-6c25001f115d</d2p1:guid>
</FolderIds>
<Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>493ee575-cb75-4c95-8c8b-408cbd43f7a4</d2p1:guid>
<d2p1:guid>db9bb799-3dab-445d-95d7-7a0220f86a16</d2p1:guid>
</Ids>
<IsInLibrary>true</IsInLibrary>
<IsSelectable>true</IsSelectable>
<SchemaId>c7fc7cbe-6256-4316-b959-7be873d223d0</SchemaId>
<TenantId>9fa3918c-993d-431d-b4cb-d798a3e10d52</TenantId>
<UserId>fef8b198-b571-4ef2-a5ac-6498f47116ee</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.