POST api/reporting/datafiles/bytecount

Returns the byte count for data files that match the criteria.

Request Information

URI Parameters

None.

Body Parameters

The criteria model to filter by.

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": [
    "9eb3b210-d535-4ce0-a345-f7b80a62813d",
    "f41882da-ed52-46ce-ab29-2a28b43e483e"
  ],
  "SchemaId": "de58d22e-49ea-49f7-ab24-ee4b5dc93f22",
  "UserId": "b15d200e-e3ae-42a9-b682-315950f1da97",
  "TenantId": "b1783cca-a592-4ae1-a2ef-2d258eebc1f3",
  "IsInLibrary": true,
  "FolderId": "054772dd-48f5-41fe-90f5-9c83fc137db8",
  "FolderIds": [
    "82042be1-4cd4-4d1e-8f76-d99a3e15bc1e",
    "238845c5-4376-4e73-a128-1e62458cb84e"
  ],
  "DateFrom": "2026-01-07T07:22:30.9828631+00:00",
  "DateTo": "2026-01-07T07:22:30.9828631+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-07T07:22:30.9828631+00:00</DateFrom>
  <DateTo>2026-01-07T07:22:30.9828631+00:00</DateTo>
  <FolderId>054772dd-48f5-41fe-90f5-9c83fc137db8</FolderId>
  <FolderIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>82042be1-4cd4-4d1e-8f76-d99a3e15bc1e</d2p1:guid>
    <d2p1:guid>238845c5-4376-4e73-a128-1e62458cb84e</d2p1:guid>
  </FolderIds>
  <Ids xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>9eb3b210-d535-4ce0-a345-f7b80a62813d</d2p1:guid>
    <d2p1:guid>f41882da-ed52-46ce-ab29-2a28b43e483e</d2p1:guid>
  </Ids>
  <IsInLibrary>true</IsInLibrary>
  <IsSelectable>true</IsSelectable>
  <SchemaId>de58d22e-49ea-49f7-ab24-ee4b5dc93f22</SchemaId>
  <TenantId>b1783cca-a592-4ae1-a2ef-2d258eebc1f3</TenantId>
  <UserId>b15d200e-e3ae-42a9-b682-315950f1da97</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.