POST api/datafiles/select
Retrieves a list of data files that match the provided criteria.
Request Information
URI Parameters
None.
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": [
"58621129-368c-4e11-86e9-2b85970cbe87",
"69ed5f93-c595-4c37-a6f7-d4ff824413c3"
],
"SchemaId": "7d7d06fc-c8a7-4d1d-8c77-86349a36eb2b",
"UserId": "6c58c862-c7e8-4845-af38-c23f9e8449d4",
"TenantId": "c909c8ea-435a-44a5-abcb-4b82e2f23a28",
"IsInLibrary": true,
"FolderId": "294dbb20-ed52-4d5b-9930-84094cda7ad1",
"FolderIds": [
"8676f659-2d83-45ad-b0ad-bcbe96b4205c",
"dbb99cbd-3295-46e6-b627-a5428e18e966"
],
"DateFrom": "2026-01-10T12:32:09.6241818+00:00",
"DateTo": "2026-01-10T12:32:09.6241818+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:32:09.6241818+00:00</DateFrom>
<DateTo>2026-01-10T12:32:09.6241818+00:00</DateTo>
<FolderId>294dbb20-ed52-4d5b-9930-84094cda7ad1</FolderId>
<FolderIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>8676f659-2d83-45ad-b0ad-bcbe96b4205c</d2p1:guid>
<d2p1:guid>dbb99cbd-3295-46e6-b627-a5428e18e966</d2p1:guid>
</FolderIds>
<Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>58621129-368c-4e11-86e9-2b85970cbe87</d2p1:guid>
<d2p1:guid>69ed5f93-c595-4c37-a6f7-d4ff824413c3</d2p1:guid>
</Ids>
<IsInLibrary>true</IsInLibrary>
<IsSelectable>true</IsSelectable>
<SchemaId>7d7d06fc-c8a7-4d1d-8c77-86349a36eb2b</SchemaId>
<TenantId>c909c8ea-435a-44a5-abcb-4b82e2f23a28</TenantId>
<UserId>6c58c862-c7e8-4845-af38-c23f9e8449d4</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.