jotform / jotform-api-python

JotForm API - Python Client
GNU General Public License v2.0
39 stars 47 forks source link

HIPAA accounts not supported? #26

Open bjelam87 opened 1 year ago

bjelam87 commented 1 year ago

While attempting to return a list of submissions get_form_submissions(formID=xxxxx) from a form with no HIPAA fields, the entirety of the response I receive is: {'isHIPAA': 1}

At this point I attempted to simply get_forms() - same response: {'isHIPAA': 1}

Can I assume that HIPAA-enabled accounts cannot use the API?

zonywhoop commented 1 year ago

FYI, HIPAA endpoint works just fine when used like this:

import jotform
jotform_client = jotform.JotformAPIClient(jotform_key, baseUrl="https://hipaa-api.jotform.com/")