GET WebIndicators/ReleaseOfSelectedData

Returns the items that show on the "Release of Selected Data" page of the web site together with their Latest Date and Last Period.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SelectedData
NameDescriptionTypeAdditional information
DataType

string

None.

Indicator

string

None.

LatestDate

string

None.

LastPeriod

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "DataType": "sample string 1",
    "Indicator": "sample string 2",
    "LatestDate": "sample string 3",
    "LastPeriod": "sample string 4"
  },
  {
    "DataType": "sample string 1",
    "Indicator": "sample string 2",
    "LatestDate": "sample string 3",
    "LastPeriod": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSelectedData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SarbWebApi.DTOs">
  <SelectedData>
    <DataType>sample string 1</DataType>
    <Indicator>sample string 2</Indicator>
    <LastPeriod>sample string 4</LastPeriod>
    <LatestDate>sample string 3</LatestDate>
  </SelectedData>
  <SelectedData>
    <DataType>sample string 1</DataType>
    <Indicator>sample string 2</Indicator>
    <LastPeriod>sample string 4</LastPeriod>
    <LatestDate>sample string 3</LatestDate>
  </SelectedData>
</ArrayOfSelectedData>