.NET 8/.NET Standard async library for the Jotform API, using best practices and great test coverage
Install the package from NuGet
Install-Package Jotform.NET
Create a new JotformClient
var jotform = new JotformClient(new HttpClient(), "myapikey");
// For enterprise users
var jotform = new JotformClient(new HttpClient(), "myapikey", "mysubdomain");
Basic usage
var forms = await jotform.GetUserFormsAsync();
The documentation is available at https://api.jotform.com/docs/
Minor API changes have been made to use stronger typing, follow the method parameters for self explanatory usage.
- There is a property explorer, make sure it is up to date with the API https://api.jotform.com/docs/properties/index.php
- Add non-read operation tests
- Question Types & response types should use different objects