Search found 6 matches
- Mon Apr 03, 2023 3:52 pm
- Forum: API
- Topic: Testing certain functionality
- Replies: 3
- Views: 4961
Re: Testing certain functionality
I think I answered my own question. Dart's http.post() method overrides all headers. I'll have to look into a workaround.
- Mon Apr 03, 2023 3:49 pm
- Forum: API
- Topic: Testing certain functionality
- Replies: 3
- Views: 4961
Re: Testing certain functionality
Absolutely. I just tried again using this request: url: https://api.opendental.com/api/v1/payments headers: { "Authorization": "ODFHIR NFF6i0KrXrxDkZHt/VzkmZEaUWOjnQX2z", "Content-Type":"application/json" } body:{ "PayAmt": "76.89", "PatNum": 15, "PayDate": "2023-04-03", "PayNote": "Payment taken vi...
- Mon Apr 03, 2023 3:14 pm
- Forum: API
- Topic: Testing certain functionality
- Replies: 3
- Views: 4961
Testing certain functionality
Are all methods allowed/implemented in the database that we can access with the test credentials provided here: https://www.opendental.com/site/apisetup.html (Under the Authorization header)? I've been getting the error "Content-Type must be application/json." even though I clearly set this header. ...
- Tue Mar 14, 2023 11:10 pm
- Forum: API
- Topic: The API and HIPAA compliance
- Replies: 1
- Views: 2987
The API and HIPAA compliance
As a 3rd party, I have "patient search" functionality because I need the PatNum for most API calls. It is my understanding that because PatNums are unique, they are considered PHI under HIPAA. I do not store the PatNum in any permanent storage (even in logs), but it is obviously in temp memory while...
- Fri Mar 03, 2023 10:13 am
- Forum: API
- Topic: Patients GET Add Zip
- Replies: 3
- Views: 6184
Patients GET Add Zip
Can we add the Zip field to the values returned when querying patients?
- Mon Jan 23, 2023 3:43 pm
- Forum: API
- Topic: Payments POST - Change PayType
- Replies: 1
- Views: 2402
Payments POST - Change PayType
When POSTing a new payment, can we add functionality to set the PayType by name? It would reduce the number of queries made if I don't have to first query the definitions table for the Credit Card payment type and then parse the DefNum to add to the payment POST.