GET CPS/MapsList

Get all available CPS maps.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of mapMetadata
NameDescriptionTypeAdditional information
mapID

integer

None.

mapDescription

string

None.

mapName

string

None.

year

integer

None.

xmlns

string

None.

lastUpdated

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "mapID": 1,
    "mapDescription": "sample string 2",
    "mapName": "sample string 3",
    "year": 1,
    "xmlns": "sample string 4",
    "lastUpdated": "2024-04-26T18:30:08.6715455-05:00"
  },
  {
    "mapID": 1,
    "mapDescription": "sample string 2",
    "mapName": "sample string 3",
    "year": 1,
    "xmlns": "sample string 4",
    "lastUpdated": "2024-04-26T18:30:08.6715455-05:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfmapMetadata xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
  <mapMetadata>
    <lastUpdated>2024-04-26T18:30:08.6715455-05:00</lastUpdated>
    <mapDescription>sample string 2</mapDescription>
    <mapID>1</mapID>
    <mapName>sample string 3</mapName>
    <xmlns>sample string 4</xmlns>
    <year>1</year>
  </mapMetadata>
  <mapMetadata>
    <lastUpdated>2024-04-26T18:30:08.6715455-05:00</lastUpdated>
    <mapDescription>sample string 2</mapDescription>
    <mapID>1</mapID>
    <mapName>sample string 3</mapName>
    <xmlns>sample string 4</xmlns>
    <year>1</year>
  </mapMetadata>
</ArrayOfmapMetadata>