get
https://{environment}.origamirisk.com/OrigamiApi/api/Quotes/Proposals//Schedules//ScheduleRatingCategories
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Overview
Returns the schedule rating categories for a proposal's schedule domain and rate table. These categories define the numeric ranges and precision used when rating individual scheduled items (e.g., buildings, vehicles) against a rate table, and directly affect how those items contribute to the premium calculation.
Examples
Scenario 1: Retrieve schedule rating categories for a domain:
GET /api/Quotes/Proposals/12345/Schedules/ProposalLocation/ScheduleRatingCategories?rateTableName=BuildingRates&stateID=10200 OK
[
{
"RateTableContentID": 501,
"Category": "Fire Protection",
"LowLimit": -25.0,
"HighLimit": 25.0,
"Precision": 2,
"PrecisionStep": 0.01
},
{
"RateTableContentID": 502,
"Category": "Electrical",
"LowLimit": -10.0,
"HighLimit": 10.0,
"Precision": 0,
"PrecisionStep": 1.0
}
]Scenario 2: No categories found for the given parameters:
GET /api/Quotes/Proposals/12345/Schedules/ProposalLocation/ScheduleRatingCategories?rateTableName=UnknownTable&stateID=10200 OK
[]