API CovCats

See API Specification

CovCats GET (single)

Version Added: 23.3.8

Gets a single covcat.

Parameters:

CovCatNum: Required in the URL.

Example Request:
GET /covcats/1

Example Response:

{
"CovCatNum": 1,
"Description": "General",
"DefaultPercent": -1,
"CovOrder": 0,
"IsHidden": "false",
"EbenefitCat": "General"
}

200 OK
404 NotFound (with explanation)

CovCats GET (multiple)

Version Added: 23.3.8

Gets a list of covcats.

Example Request:
GET /covcats

Example Response:

[
{
"CovCatNum": 1,
"Description": "General",
"DefaultPercent": -1,
"CovOrder": 0,
"IsHidden": "false",
"EbenefitCat": "General"
},
{
"CovCatNum": 2,
"Description": "Diagnostic",
"DefaultPercent": 100,
"CovOrder": 1,
"IsHidden": "false",
"EbenefitCat": "Diagnostic"
},
{
"CovCatNum": 3,
"Description": "Preventive",
"DefaultPercent": 100,
"CovOrder": 3,
"IsHidden": "false",
"EbenefitCat": "RoutinePreventive"
},
etc.
]

200 OK