API PerioExams

See API Specification

PerioExams GET (single)

Version Added: 22.4.36

Gets a single PerioExam.

PerioExamNum: Required in the URL.

Example Request:
GET /perioexams/171

Example Response:
{
"PerioExamNum": 171,
"PatNum": 236,
"ExamDate": "2023-04-01",
"ProvNum": 0,
"DateTMeasureEdit": "2023-04-01 05:25:46",
"Note": ""
}

200 OK
400 BadRequest (with explanation)
404 Not Found (with explanation)

PerioExams GET (multiple)

Version Added: 22.4.36

Gets a list of PerioExams.

Parameters: All optional.

PatNum: FK to patient.PatNum.
ExamDate: String in "yyyy-MM-dd" format. Gets all PerioExams made on or after a certain date.

Example Request:
GET /perioexams?PatNum=236
GET /perioexams?ExamDate=2023-04-01

Example Response:
[
{
"PerioExamNum": 171,
"PatNum": 236,
"ExamDate": "2023-04-01",
"ProvNum": 0,
"DateTMeasureEdit": "2023-04-01 05:25:46",
"Note": ""
},
etc...
]

200 OK
400 BadRequest (with explanation)
404 Not Found (with explanation)