jotform / jotform-api-nodejs

JotForm API - NodeJS Client
GNU General Public License v2.0
33 stars 26 forks source link

logo


Jotform Node.js SDK

Installation

$ npm install jotform

#

Usage

import Jotform from "jotform";

const client = new Jotform('YOUR_API_KEY');
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'
    }
]);

#

License