jotform / jotform-api-nodejs

JotForm API - NodeJS Client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

logo


Jotform Node.js SDK

Installation

$ npm install jotform

Usage

  • 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'
	}
]);

License

  • This project is under the GPLv2 license. Copyright (c) 2023 Jotform and it's contributors.

About

JotForm API - NodeJS Client

License:GNU General Public License v2.0


Languages

Language:TypeScript 99.6%Language:JavaScript 0.4%