Swagger UI (Original)
Alternative UI (Responsive Web Design)

Route Debugger

Type in a url in the address bar to see which defined routes match it. A {*catchall} route is added to the list of routes automatically in case none of your routes match.

To generate URLs using routing, supply route values via the query string. example: http://localhost:14230/?id=123

: {controller}/{action}/{id}

Route Data
KeyValue
controllerHome 
actionIndex 
Data Tokens
KeyValue

All Routes
Matches Current Request Url Defaults Constraints DataTokens
Falseswagger/docs/{apiVersion}(empty)apiVersion = .+(null)
Falseswagger/ui/{*assetPath}(empty)assetPath = .+(null)
Falseswagger(empty)uriResolution = Swashbuckle.Application.HttpRouteDirectionConstraint(null)
FalseSalesComparables/Address/{street}/{city}/{county}/{state}/{zip}controller = SalesComparables, action = GetByAddress(empty)(null)
FalseSalesComparables/PropId/{propId}controller = SalesComparables, action = GetByPropId(empty)(null)
FalseSalesComparables/SaPropId/{propId}controller = SalesComparables, action = GetBySaPropId(empty)(null)
FalseSalesComparables/APN/{apn}/{county}/{state}controller = SalesComparables, action = GetByAPN(empty)(null)
FalseSalesComparables/{*xAnyData}controller = SalesComparables, action = Default(empty)(null)
FalseExpandedHistory/Address/{street}/{city}/{county}/{state}/{zip}controller = ExpandedHistory, action = GetByAddress(empty)(null)
FalseExpandedHistory/PropId/{propId}controller = ExpandedHistory, action = GetByPropId(empty)(null)
FalseExpandedHistory/SaPropId/{propId}controller = ExpandedHistory, action = GetBySaPropId(empty)(null)
FalseExpandedHistory/APN/{apn}/{county}/{state}controller = ExpandedHistory, action = GetByAPN(empty)(null)
FalseExpandedHistory/{*xAnyData}controller = ExpandedHistory, action = Default(empty)(null)
FalsePlatMaps/Address/{street}/{city}/{county}/{state}/{zip}controller = PlatMaps, action = GetByAddress(empty)(null)
FalsePlatMaps/PropId/{propId}controller = PlatMaps, action = GetByPropId(empty)(null)
FalsePlatMaps/SaPropId/{propId}controller = PlatMaps, action = GetBySaPropId(empty)(null)
FalsePlatMaps/APN/{apn}/{county}/{state}controller = PlatMaps, action = GetByAPN(empty)(null)
FalsePlatMaps/{*xAnyData}controller = PlatMaps, action = Default(empty)(null)
FalsePropertySearch/Owner/{firstName}/{lastName}/{addressType}/{city}/{county}/{state}/{zip}controller = PropertySearch, action = GetByOwner(empty)(null)
FalsePropertySearch/Address/{number}/{dir}/{street}/{suffix}/{unit}/{city}/{county}/{state}/{zip}controller = PropertySearch, action = GetByAddress(empty)(null)
FalsePropertySearch/PropId/{propId}controller = PropertySearch, action = GetByPropId(empty)(null)
FalsePropertySearch/SaPropId/{propId}controller = PropertySearch, action = GetBySaPropId(empty)(null)
FalsePropertySearch/APN/{apn}/{county}/{state}controller = PropertySearch, action = GetByAPN(empty)(null)
FalsePropertySearch/Geo/{latitude}/{longitude}/{radius}controller = PropertySearch, action = GetByGeo(empty)(null)
FalsePropertySearch/{*xAnyData}controller = PropertySearch, action = Default(empty)(null)
FalseExpandedProfile/Address/{street}/{city}/{county}/{state}/{zip}controller = ExpandedProfile, action = GetByAddress(empty)(null)
FalseExpandedProfile/PropId/{propId}controller = ExpandedProfile, action = GetByPropId(empty)(null)
FalseExpandedProfile/SaPropId/{propId}controller = ExpandedProfile, action = GetBySaPropId(empty)(null)
FalseExpandedProfile/APN/{apn}/{county}/{state}controller = ExpandedProfile, action = GetByAPN(empty)(null)
FalseExpandedProfile/{*xAnyData}controller = ExpandedProfile, action = Default(empty)(null)
FalseBasicHistory/Address/{street}/{city}/{county}/{state}/{zip}controller = BasicHistory, action = GetByAddress(empty)(null)
FalseBasicHistory/PropId/{propId}controller = BasicHistory, action = GetByPropId(empty)(null)
FalseBasicHistory/SaPropId/{propId}controller = BasicHistory, action = GetBySaPropId(empty)(null)
FalseBasicHistory/APN/{apn}/{county}/{state}controller = BasicHistory, action = GetByAPN(empty)(null)
FalseBasicHistory/{*xAnyData}controller = BasicHistory, action = Default(empty)(null)
FalseBasicProfile/Address/{street}/{city}/{county}/{state}/{zip}controller = BasicProfile, action = GetByAddress(empty)(null)
FalseBasicProfile/PropId/{propId}controller = BasicProfile, action = GetByPropId(empty)(null)
FalseBasicProfile/SaPropId/{propId}controller = BasicProfile, action = GetBySaPropId(empty)(null)
FalseBasicProfile/APN/{apn}/{county}/{state}controller = BasicProfile, action = GetByAPN(empty)(null)
FalseBasicProfile/{*xAnyData}controller = BasicProfile, action = Default(empty)(null)
FalseQuantumAVMReport/Address/{street}/{city}/{county}/{state}/{zip}controller = QuantumAVMReport, action = GetByAddress(empty)(null)
FalseQuantumAVMReport/PropId/{propId}controller = QuantumAVMReport, action = GetByPropId(empty)(null)
FalseQuantumAVMReport/SaPropId/{propId}controller = QuantumAVMReport, action = GetBySaPropId(empty)(null)
FalseQuantumAVMReport/APN/{apn}/{county}/{state}controller = QuantumAVMReport, action = GetByAPN(empty)(null)
FalseQuantumAVMReport/{*xAnyData}controller = QuantumAVMReport, action = Default(empty)(null)
FalseAVMReport/Address/{street}/{city}/{county}/{state}/{zip}controller = AVMReport, action = GetByAddress(empty)(null)
FalseAVMReport/PropId/{propId}controller = AVMReport, action = GetByPropId(empty)(null)
FalseAVMReport/SaPropId/{propId}controller = AVMReport, action = GetBySaPropId(empty)(null)
FalseAVMReport/APN/{apn}/{county}/{state}controller = AVMReport, action = GetByAPN(empty)(null)
FalseAVMReport/{*xAnyData}controller = AVMReport, action = Default(empty)(null)
False{resource}.axd/{*pathInfo}(null)(empty)(null)
Falsehealthcheckcontroller = Home, action = Healthcheck, id = UrlParameter.Optional(empty)(empty)
Falsedocs/ui2/indexcontroller = Home, action = DocsUI2Index, id = UrlParameter.Optional(empty)(empty)
True{controller}/{action}/{id}controller = Home, action = Index, id = UrlParameter.Optional(empty)(empty)
Falsehome/badrequestcontroller = Home, action = BadRequest, id = UrlParameter.Optional(empty)(empty)
True{*catchall}(null)(null)(null)

Current Request Info

AppRelativeCurrentExecutionFilePath is the portion of the request that Routing acts on.

AppRelativeCurrentExecutionFilePath: ~/