GET ActiveWildfire?Latitude={Latitude}&Longitude={Longitude}&ResetCache={ResetCache}&APIIdentifier={APIIdentifier}&User={User}

The Building service returns Binding Authority defined building attributes, based on an addresses

Request Information

Parameters

NameDescriptionAdditional information
Latitude
Latitude

Define this parameter in the request URI.

Longitude
Longitude

Define this parameter in the request URI.

ResetCache
Reset cache with new lookup. Example: true (Optional)

Define this parameter in the request URI.

APIIdentifier
An identifier assigned to MGAs by RSUI. Example: 5a6c7790-83bf-4b4c-88e1-7067413d3390 (Required)

Define this parameter in the request URI.

User
User Name that matches with the APIIdentifier. Example: John Smith (Required)

Define this parameter in the request URI.

Response Information

The service may return more than one Building if multiple buildings are found. (Error messages will be in the ApiMessages field)

Response body formats

application/json, text/json

Sample:
{
  "activeWildfireIndex": {
    "latitude": 1.0,
    "longitude": 2.0,
    "distanceToClosestWildfire": 3.0,
    "active": true,
    "acresCoverage": 5.0,
    "incidentName": "sample string 6",
    "url": "sample string 7"
  },
  "apiMessages": [
    "sample string 1",
    "sample string 2",
    "sample string 3"
  ]
}

text/html

Sample:
{"activeWildfireIndex":{"latitude":1.0,"longitude":2.0,"distanceToClosestWildfire":3.0,"active":true,"acresCoverage":5.0,"incidentName":"sample string 6","url":"sample string 7"},"apiMessages":["sample string 1","sample string 2","sample string 3"]}

application/xml, text/xml

Sample:
<ActiveWildfireResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <APIMessages>
    <string>sample string 1</string>
    <string>sample string 2</string>
    <string>sample string 3</string>
  </APIMessages>
  <ActiveWildfireIndex>
    <Latitude>1</Latitude>
    <Longitude>2</Longitude>
    <DistanceToClosestWildfire>3</DistanceToClosestWildfire>
    <Active>true</Active>
    <AcresCoverage>5</AcresCoverage>
    <IncidentName>sample string 6</IncidentName>
    <URL>sample string 7</URL>
  </ActiveWildfireIndex>
</ActiveWildfireResponse>

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

Sample:
({"activeWildfireIndex":{"latitude":1.0,"longitude":2.0,"distanceToClosestWildfire":3.0,"active":true,"acresCoverage":5.0,"incidentName":"sample string 6","url":"sample string 7"},"apiMessages":["sample string 1","sample string 2","sample string 3"]});