New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

jotform

Package Overview
Dependencies
Maintainers
2
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jotform

jotform API nodejs client

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3.4K
increased by6.81%
Maintainers
2
Weekly downloads
 
Created
Source

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'
	}
]);
  • Detailed information of API: https://api.jotform.com/docs.
  • Properties reference: https://api.jotform.com/docs/properties/index.php

License

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

FAQs

Package last updated on 27 Dec 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc