GET api/Applications/GetVersionStatisticsAsync?applicationId={applicationId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
applicationId

integer

Required

Body Parameters

None.

Response Information

Resource Description

VersionStatistics
NameDescriptionTypeAdditional information
TotalVersions

integer

None.

EnabledVersions

integer

None.

MandatoryVersions

integer

None.

LatestVersion

string

None.

OldestVersion

string

None.

LastReleaseDate

date

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalVersions": 1,
  "EnabledVersions": 2,
  "MandatoryVersions": 3,
  "LatestVersion": "sample string 4",
  "OldestVersion": "sample string 5",
  "LastReleaseDate": "2025-10-27T23:15:19.825371+03:00"
}

application/xml, text/xml

Sample:
<VersionStatistics xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Luhmann.SmartGrid.Api.Models">
  <EnabledVersions>2</EnabledVersions>
  <LastReleaseDate>2025-10-27T23:15:19.825371+03:00</LastReleaseDate>
  <LatestVersion>sample string 4</LatestVersion>
  <MandatoryVersions>3</MandatoryVersions>
  <OldestVersion>sample string 5</OldestVersion>
  <TotalVersions>1</TotalVersions>
</VersionStatistics>