Patient portal API
-
- Posts: 70
- Joined: Wed Mar 15, 2023 8:43 am
Patient portal API
Hello Open Dental. Is there a way to GET the API for Username for open dental patient portal?
Re: Patient portal API
Can you please clarify, do you need to usernames of the patients or the username information for the dental office itself? What is your use case for the username?
-
- Posts: 70
- Joined: Wed Mar 15, 2023 8:43 am
Re: Patient portal API
We would need the patients username. The use case it that many times patients can not get into their patient records and need to be emailed the usernames. The API will allow the username to be emailed.
Re: Patient portal API
Hello beacondental,beacondental wrote: ↑Tue Jun 06, 2023 1:26 pmWe would need the patients username. The use case it that many times patients can not get into their patient records and need to be emailed the usernames. The API will allow the username to be emailed.
A patient's Patient Portal username is stored in the userweb table. You could retrieve that information using a ShortQuery.
Something like this:
Code: Select all
SELECT username FROM userweb WHERE FKey=patient.PatNum AND FKeyType=1;