GET api/systemdashboard/stilimportstatistics

Returns stil import statistics

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

StilImportStatisticsResponse
NameDescriptionTypeAdditional information
SynchronisedLastTenMinutes

integer

None.

SynchronisedLastHalfHour

integer

None.

StartedLastHalfHour

integer

None.

FinishedLastHalfHour

integer

None.

Finished

integer

None.

Failed

integer

None.

Syncing

integer

None.

BeingSynced

string

None.

Ready

integer

None.

Downloading

integer

None.

WaitingForDownload

integer

None.

InProgress

integer

None.

IsImportant

integer

None.

LastSynced

string

None.

Response Formats

application/json, text/json

Sample:
{
  "SynchronisedLastTenMinutes": 1,
  "SynchronisedLastHalfHour": 2,
  "StartedLastHalfHour": 3,
  "FinishedLastHalfHour": 4,
  "Finished": 5,
  "Failed": 6,
  "Syncing": 7,
  "BeingSynced": "sample string 8",
  "Ready": 9,
  "Downloading": 10,
  "WaitingForDownload": 11,
  "InProgress": 12,
  "IsImportant": 13,
  "LastSynced": "sample string 14"
}

application/xml, text/xml

Sample:
<StilImportStatisticsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Alice.Dto.Dtos.SystemStatistics">
  <BeingSynced>sample string 8</BeingSynced>
  <Downloading>10</Downloading>
  <Failed>6</Failed>
  <Finished>5</Finished>
  <FinishedLastHalfHour>4</FinishedLastHalfHour>
  <InProgress>12</InProgress>
  <IsImportant>13</IsImportant>
  <LastSynced>sample string 14</LastSynced>
  <Ready>9</Ready>
  <StartedLastHalfHour>3</StartedLastHalfHour>
  <SynchronisedLastHalfHour>2</SynchronisedLastHalfHour>
  <SynchronisedLastTenMinutes>1</SynchronisedLastTenMinutes>
  <Syncing>7</Syncing>
  <WaitingForDownload>11</WaitingForDownload>
</StilImportStatisticsResponse>