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
NameDescriptionTypeAdditional 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": [
    "0e390e52-0208-4f30-80b1-e82afe915700",
    "b8c41f35-c22c-4362-8c01-250f37ee7b6c"
  ],
  "SchemaId": "76d960bc-4b0a-4c67-b072-489aef9022b5",
  "UserId": "8e456ab9-ef32-4022-8cff-60daf72c3b08",
  "TenantId": "a5da2ba9-f7ca-4dbd-a948-c051b4be1370",
  "IsInLibrary": true,
  "FolderId": "1b67a0c3-523c-489f-af35-10bbad18f46a",
  "FolderIds": [
    "dbb6b24b-8f6c-4674-838a-d515503a95c2",
    "bc487564-5db2-4358-bcb1-5c287a893f4a"
  ],
  "DateFrom": "2026-01-08T11:40:28.3865807+00:00",
  "DateTo": "2026-01-08T11:40:28.3865807+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-08T11:40:28.3865807+00:00</DateFrom>
  <DateTo>2026-01-08T11:40:28.3865807+00:00</DateTo>
  <FolderId>1b67a0c3-523c-489f-af35-10bbad18f46a</FolderId>
  <FolderIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>dbb6b24b-8f6c-4674-838a-d515503a95c2</d2p1:guid>
    <d2p1:guid>bc487564-5db2-4358-bcb1-5c287a893f4a</d2p1:guid>
  </FolderIds>
  <Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>0e390e52-0208-4f30-80b1-e82afe915700</d2p1:guid>
    <d2p1:guid>b8c41f35-c22c-4362-8c01-250f37ee7b6c</d2p1:guid>
  </Ids>
  <IsInLibrary>true</IsInLibrary>
  <IsSelectable>true</IsSelectable>
  <SchemaId>76d960bc-4b0a-4c67-b072-489aef9022b5</SchemaId>
  <TenantId>a5da2ba9-f7ca-4dbd-a948-c051b4be1370</TenantId>
  <UserId>8e456ab9-ef32-4022-8cff-60daf72c3b08</UserId>
</DataFilesFilterCriteriaDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.