A C++/Qt Client library for the JotForm API.
This library requires Qt6 and/or Qt5 to be installed.
cd jotform-qt-api
mkdir build
cd build
cmake ../ -DQT_VERSION_MAJOR=6
cmake --build .
cmake --install .
After installation:
- Include the header in your project.
- Add the produced
.dll
or.so
file and the relevant header to the path so your project can find it. - Include the library in your project's CMake using
target_link_libraries(executable PRIVATE Qt${QT_VERSION_MAJOR}jotform)
.
To use the JotForm API, an API key is required for all user-related calls. You can generate your API Keys in the API section of the My Account page on JotForm.
This library is currently under construction, so some features may be missing.
- GET methods.
- POST methods.
- PUT methods.
- DELETE methods.
- Filtering submissions and forms by date.