API ClaimFoms

See API Specification

See ClaimForms for additional information.

Anyone using the API should also become very familiar with our schema documentation which contains important details about individual database table columns.
See ClaimForm Database Schema.

ClaimForms GET (single)

Version Added: 25.2.26

Gets a single claimform.

Parameters:

ClaimFormNum: Required in URL.

Example Request:
GET /claimforms/1

Example Response:
{
"ClaimFormNum": 1,
"Description": "ADA 2006",
"IsHidden": "false"
}

200 OK
404 NotFound (with explanation)

ClaimForms GET (multiple)

Version Added: 25.2.26

Gets a list of claimforms.

Example Request:
GET /claimforms

Example Response:
[
{
"ClaimFormNum": 1,
"Description": "ADA 2006",
"IsHidden": "false"
},
{
"ClaimFormNum": 2,
"Description": "UB04",
"IsHidden": "false"
},
{
"ClaimFormNum": 3,
"Description": "ADA 2012",
"IsHidden": "false"
}
]

200 OK
400 BadRequest (with explanation)
404 NotFound (with explanation)