Hello all,
Hope you had a wonderful holiday! I wanted to request a quick feature. At this point, with the insplan API I am only able to identify whether or not to use blue book. Is there a way to also be able to select whcih manual blue book to select?
Thank you very much in advance.
Omar
BlueBook Selection
Re: BlueBook Selection
Good afternoon omar22,omar22 wrote: ↑Fri Dec 27, 2024 10:05 amHello all,
Hope you had a wonderful holiday! I wanted to request a quick feature. At this point, with the insplan API I am only able to identify whether or not to use blue book. Is there a way to also be able to select whcih manual blue book to select?
Thank you very much in advance.
Omar
You can tell which version of Blue Book (None, Legacy, or Blue Book) is being used by calling preferences GET.
Code: Select all
https://api.opendental.com/api/v1/preferences?PrefName=AllowedFeeSchedsAutomate
Code: Select all
{
"PrefNum": 196,
"PrefName": "AllowedFeeSchedsAutomate",
"ValueString": "0"
}
ValueString: "1" means Legacy.
ValueString: "2" means Blue Book.
Blue Book setup must be done by the office.
Thanks!