$ npm install jotform
- Initialize the SDK.
import Jotform from "jotform";
const client = new Jotform('YOUR_API_KEY');
- Simple examples.
const response = await client.form.createForm();
const formId = response.content.id;
const questions = await client.form.addQuestions(formId, [
{
type: 'control_email',
name: 'emailfield',
text: 'My email field',
order: '1'
}, {
type: 'control_email',
name: 'emailfield2',
text: 'My email field 2',
order: '2'
}
]);
- Detailed information of API: https://api.jotform.com/docs.
- Properties reference: https://api.jotform.com/docs/properties/index.php
- This project is under the GPLv2 license. Copyright (c) 2023 Jotform and it's contributors.