GET api/LiveTileSet

Gets the URL associated with the current live tile set along with the ClientID associated with the current flood alerts.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "TileHandlerURL": "sample string 1",
  "ClientID": "88b67f42-4c78-4ef9-929b-e3a9167a430c",
  "TileSetToken": "dc59f8c0-7d91-4bb7-9ef7-3be32610c3aa",
  "ID": 1
}

text/javascript

Sample:
{"TileHandlerURL":"sample string 1","ClientID":"88b67f42-4c78-4ef9-929b-e3a9167a430c","TileSetToken":"dc59f8c0-7d91-4bb7-9ef7-3be32610c3aa","ID":1}

text/xml

Sample:
<PublicLiveTileSetData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FloodAlerts.Shared.Data">
  <ID>1</ID>
  <ClientID>88b67f42-4c78-4ef9-929b-e3a9167a430c</ClientID>
  <TileHandlerURL>sample string 1</TileHandlerURL>
  <TileSetToken>dc59f8c0-7d91-4bb7-9ef7-3be32610c3aa</TileSetToken>
</PublicLiveTileSetData>