GET v2/radar/lightning
Returns the metadata for retrieving the lightning images.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
ArrayWrapperOfImageDescriptorDto| Name | Description | Type | Additional 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"}]});