A Python API wrapper for Jotform, with additional endpoints.
Project description
Unofficial Jotform API Extended Python Client
This is an unofficial API wrapper for Jotform in Python that includes additional endpoints and documentation.
Information
The official documentation can be found here: Jotform API Documentation
Additional documentation for the different endpoints are included in the docstrings of each function.
API coverage:
| Endpoints | Jotform API | Extended |
|---|---|---|
| User | ✔️ | ✔️ |
| Form | ✔️ | ✔️ |
| Form Questions | ✔️ | ✔️ |
| Form Properties | ✔️ | ✔️ |
| Form Submissions | ✔️ | ✔️ |
| Form Webhooks | ✔️ | ✔️ |
| Form Reports | ✔️ | ✔️ |
| Submission | ✔️ | ✔️ |
| Report | ✔️ | ✔️ |
| Folder | ✔️ | ✔️ |
| System | ✔️ | ✔️ |
| Teams | ❌ | ✔️ |
| Apps | ❌ | ✔️ |
| Form Archive | ❌ | ✔️ |
| Submission Threads | ❌ | ✔️ |
| PDFs | ❌ | ✔️ |
| AI Agents | ❌ | ✔️ |
| SMTP | ❌ | ✔️ |
Installing
You can install the extended client using:
$ pip install jotform-extended
Authentication
The Jotform API requires a Jotform API key. If you don't have one, you can follow this guide to create one.
Usage examples
Get user details:
from jotformextended import JotformExtendedClient
jotform_api_key = "your_api_key"
jf = JotformExtendedClient(api_key=jotform_api_key)
user_details = jf.get_user()
print(user_details)
Get form details:
from jotformextended import JotformExtendedClient
jotform_api_key = "your_api_key"
form_id = "your_form_id"
jf = JotformExtendedClient(api_key=jotform_api_key)
form_details = jf.get_form(form_id=form_id)
print(form_details)
Create a form:
from jotformextended import JotformExtendedClient
jotform_api_key = "your_api_key"
form_details = {
"properties[title]": "Form Title",
"questions[0][type]": "control_head",
"questions[0][text]": "Form Header",
"questions[0][order]": "1",
"questions[1][type]": "control_textbox",
"questions[1][text]": "Text Box Label",
"questions[1][order]": "2",
"questions[1][required]": "Yes",
"questions[1][readonly]": "No",
"emails[0][type]": "notification",
"emails[0][name]": "Notification 1",
"emails[0][from]": "default",
"emails[0][to]": "example@example.com",
"emails[0][subject]": "New Submission Received",
}
jf = JotformExtendedClient(api_key=jotform_api_key)
response = jf.create_form(form=form_details)
print(f"Form ID: {response['content']['id']}")
print(f"Form URL: {response['content']['url']}")
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jotform_extended-0.1.3.tar.gz.
File metadata
- Download URL: jotform_extended-0.1.3.tar.gz
- Upload date:
- Size: 15.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13470c8de0e2243f88925415a797d639ed8235a0295b11e620202c556a63ef7a
|
|
| MD5 |
5a977890e33ebd6ddb5d7b3df66f0430
|
|
| BLAKE2b-256 |
95cfc2d1549dd09b0f7c0e0f9444b3c3b2d95b102fc2cbe92309bf2e83e881fc
|
File details
Details for the file jotform_extended-0.1.3-py3-none-any.whl.
File metadata
- Download URL: jotform_extended-0.1.3-py3-none-any.whl
- Upload date:
- Size: 15.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41fae3c17fc2ea911398024e58d788dfebb24923796b0380178f7742e5cbd0ae
|
|
| MD5 |
70ed42ff30d31a381cdb7fe6f9d0f6cb
|
|
| BLAKE2b-256 |
ec8a725e08694f5cb200ebc16f534717161858e2f60ca7619cfed5bc311071e6
|