GET v2/radar/weatherForecast?darkmode={darkmode}

Returns the metadata for retrieving the weather forecast images.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
darkmode

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

ArrayWrapperOfImageDescriptorDto
NameDescriptionTypeAdditional information
Rows

Collection of ImageDescriptorDto

None.

Response Formats

application/json, text/json

Sample:
{
  "rows": [
    {
      "index": 1,
      "num": 2,
      "foregroundUrl": "sample string 3",
      "backgroundUrl": "sample string 4"
    },
    {
      "index": 1,
      "num": 2,
      "foregroundUrl": "sample string 3",
      "backgroundUrl": "sample string 4"
    }
  ]
}

text/html

Sample:
{"rows":[{"index":1,"num":2,"foregroundUrl":"sample string 3","backgroundUrl":"sample string 4"},{"index":1,"num":2,"foregroundUrl":"sample string 3","backgroundUrl":"sample string 4"}]}

application/xml, text/xml

Sample:
<array xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <rows>
    <imageDescriptor>
      <index>1</index>
      <num>2</num>
      <foregroundUrl>sample string 3</foregroundUrl>
      <backgroundUrl>sample string 4</backgroundUrl>
    </imageDescriptor>
    <imageDescriptor>
      <index>1</index>
      <num>2</num>
      <foregroundUrl>sample string 3</foregroundUrl>
      <backgroundUrl>sample string 4</backgroundUrl>
    </imageDescriptor>
  </rows>
</array>

text/javascript, application/javascript, application/json-p

Sample:
/**/ typeof  === 'function' && ({"rows":[{"index":1,"num":2,"foregroundUrl":"sample string 3","backgroundUrl":"sample string 4"},{"index":1,"num":2,"foregroundUrl":"sample string 3","backgroundUrl":"sample string 4"}]});