POST api/datalists/select

Retrieves a list of data lists that match the criteria.

Request Information

URI Parameters

None.

Body Parameters

The criteria model to filter data lists by.

DataListsFilterCriteriaDto
NameDescriptionTypeAdditional information
UserId

globally unique identifier

None.

FolderId

globally unique identifier

None.

SchemaId

globally unique identifier

None.

DateFrom

date

None.

DateTo

date

None.

Request Formats

application/json, text/json

Sample:
{
  "UserId": "3af3ae3a-9e3d-4dc9-afee-570b07b398a5",
  "FolderId": "523c4e6e-3c85-4751-842b-85d93f0c443f",
  "SchemaId": "358d3c80-de8d-40e0-94bd-7f51ca303ed1",
  "DateFrom": "2026-01-07T07:25:05.1395038+00:00",
  "DateTo": "2026-01-07T07:25:05.1395038+00:00"
}

application/xml, text/xml

Sample:
<DataListsFilterCriteriaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.DataManagement.Models.FilterCriteria">
  <DateFrom>2026-01-07T07:25:05.1395038+00:00</DateFrom>
  <DateTo>2026-01-07T07:25:05.1395038+00:00</DateTo>
  <FolderId>523c4e6e-3c85-4751-842b-85d93f0c443f</FolderId>
  <SchemaId>358d3c80-de8d-40e0-94bd-7f51ca303ed1</SchemaId>
  <UserId>3af3ae3a-9e3d-4dc9-afee-570b07b398a5</UserId>
</DataListsFilterCriteriaDto>

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.