GET WebIndicators/HomePageRates
Gets the values for the Home Page Rates, such as, CPI, PPI, etc.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Rate| Name | Description | Type | Additional information | 
|---|---|---|---|
| Name | string | None. | |
| SectionId | string | None. | |
| SectionName | string | None. | |
| TimeseriesCode | string | None. | |
| Date | string | None. | |
| Value | decimal number | None. | |
| UpDown | integer | None. | |
| FormatNumber | string | None. | |
| FormatDate | string | None. | 
Response Formats
application/json, text/json
            Sample:
        
[
  {
    "Name": "sample string 1",
    "SectionId": "sample string 2",
    "SectionName": "sample string 3",
    "TimeseriesCode": "sample string 4",
    "Date": "sample string 5",
    "Value": 6.0,
    "UpDown": 7,
    "FormatNumber": "sample string 8",
    "FormatDate": "sample string 9"
  },
  {
    "Name": "sample string 1",
    "SectionId": "sample string 2",
    "SectionName": "sample string 3",
    "TimeseriesCode": "sample string 4",
    "Date": "sample string 5",
    "Value": 6.0,
    "UpDown": 7,
    "FormatNumber": "sample string 8",
    "FormatDate": "sample string 9"
  }
]
        application/xml, text/xml
            Sample:
<ArrayOfRate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SarbWebApi.DTOs">
  <Rate>
    <Date>sample string 5</Date>
    <FormatDate>sample string 9</FormatDate>
    <FormatNumber>sample string 8</FormatNumber>
    <Name>sample string 1</Name>
    <SectionId>sample string 2</SectionId>
    <SectionName>sample string 3</SectionName>
    <TimeseriesCode>sample string 4</TimeseriesCode>
    <UpDown>7</UpDown>
    <Value>6</Value>
  </Rate>
  <Rate>
    <Date>sample string 5</Date>
    <FormatDate>sample string 9</FormatDate>
    <FormatNumber>sample string 8</FormatNumber>
    <Name>sample string 1</Name>
    <SectionId>sample string 2</SectionId>
    <SectionName>sample string 3</SectionName>
    <TimeseriesCode>sample string 4</TimeseriesCode>
    <UpDown>7</UpDown>
    <Value>6</Value>
  </Rate>
</ArrayOfRate>