Supported integrationsFor now, Procedures are only supported for Dentrix, Dentrix Enterprise, Eaglesoft and Open Dental.
Procedures are services that are provided for a patient. Each procedure will have a fee value showing how much was charged to the patient and their insurance for the service.
Procedures have four mutually exclusive status values representing their state:
treatment_plannedmeaning that the procedure is planned for a patient sometime in the futurescheduledmeaning that the procedure has been scheduled for an appointment that has not yet occurredcompletedmeaning that the procedure has been completed and the patient has been chargedreferredmeaning that the procedure has been refferred out to a different practice for treatmentinactivemeaning that the procedure was removed from the treatment plan or schedule
Body siteDepending on the health record system procedures, additional fields specifying what part of the body the procedure was performed on. These will be surfaced in the
body_sitefield. Notably for dentistry, this field containstoothandsurface.
Procedures response
{
"code": false,
"description": "Description",
"error": [
"Error"
],
"data": [
{
"id": 11,
"patient_id": 162,
"provider_id": 84,
"appointment_id": 283,
"code": "D6100",
"name": "Implant Removal",
"status": "inactive",
"body_site": {
"tooth": "14",
"surface": "MOD"
},
"fee": {
"amount": "62.00",
"currency": "USD"
},
"start_date": "2022-06-24",
"end_date": "2022-06-24"
}
],
"count": 2
}