GET Classification?State={State}&County={County}&City={City}&APIIdentifier={APIIdentifier}&User={User}&RateDate={RateDate}
The Location Classification service returns Tier, Zone, Region and DTC Not Required flag (based on State and County or City)
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| State | Two character US State code. Example: FL (Required) |
Define this parameter in the request URI. |
| County | County name. Example: Clay (County or City is Required) |
Define this parameter in the request URI. |
| City | City name. Example: Newport New (County or City is Required) |
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. |
| RateDate | No documentation available. |
Define this parameter in the request URI. |
Response Information
The service will not return a classification if it has not been defined. (Error messages will be in the ApiMessages field)
Response body formats
application/json, text/json
Sample:
{
"tier": "2",
"zone": "4",
"apiMessages": []
}
text/html
Sample:
{"tier":"2","zone":"4","apiMessages":[]}
application/xml, text/xml
Sample:
<ClassificationResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <APIMessages /> <Tier>2</Tier> <Zone>4</Zone> <DTCNotRequired xsi:nil="true" /> </ClassificationResponse>
text/javascript, application/javascript, application/json-p
Sample:
({"tier":"2","zone":"4","apiMessages":[]});