API RecallTypes
See Recall Types 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 RecallType Database Schema.
Version Added: 24.1.44
Gets a single recalltype.
RecallTypeNum: Required in URL.
Example Request:
GET /recalltypes/7
Example Response:
{
"RecallTypeNum": 7,
"Description": "Exam",
"DefaultInterval": "6m1d",
"TimePattern": "",
"Procedures": "D0120",
"AppendToSpecial": "true"
}
200 OK
404 NotFound (with explanation)
Version Added: 24.1.44
Gets a list of all recalltypes.
Example Request:
GET /recalltypes
Example Response:
[
{
"RecallTypeNum": 1,
"Description": "Prophy",
"DefaultInterval": "6m1d",
"TimePattern": "/XXXX/",
"Procedures": "D1110",
"AppendToSpecial": "false"
},
{
"RecallTypeNum": 2,
"Description": "Child Prophy",
"DefaultInterval": "",
"TimePattern": "XXX",
"Procedures": "D1120,D1208",
"AppendToSpecial": "false"
},
etc...
]
200 OK