We only support a certain version of opendental integration so we would like to have an automated way of telling which version the user is on!
Thanks!
Is there an api route/way to get which version the user is using?
Re: Is there an api route/way to get which version the user is using?
If using the Open Dental API, you can utilize the Preferences GET endpoint:
will return
Use "PrefName=DataBaseVersion" if you need the version of the database instead.
Code: Select all
https://api.opendental.com/api/v1/preferences?PrefName=ProgramVersion
Code: Select all
[
{
"PrefNum": 68,
"PrefName": "ProgramVersion",
"ValueString": "24.2.23.0"
}
]