Modules@robinpath/jotform

@robinpath/jotform

0.1.0Public

JotForm module for RobinPath.

@robinpath/jotform

JotForm module for RobinPath.

Category Functions Auth License

Why use this module?

The jotform module lets you:

  • listForms
  • getForm
  • getFormQuestions
  • listSubmissions
  • getSubmission

All functions are callable directly from RobinPath scripts with a simple, consistent API.

Installation

npm install @robinpath/jotform

Quick Start

1. Set up credentials

jotform.setCredentials "your-credentials"

2. listForms

jotform.listForms

Available Functions

FunctionDescription
jotform.setCredentialsConfigure jotform credentials.
jotform.listFormslistForms
jotform.getFormgetForm
jotform.getFormQuestionsgetFormQuestions
jotform.listSubmissionslistSubmissions
jotform.getSubmissiongetSubmission
jotform.createSubmissioncreateSubmission
jotform.deleteSubmissiondeleteSubmission
jotform.getFormReportsgetFormReports
jotform.getFormFilesgetFormFiles
jotform.listFolderslistFolders
jotform.getUsergetUser
jotform.getUsagegetUsage
jotform.getFormWebhooksgetFormWebhooks
jotform.createFormWebhookcreateFormWebhook

Examples

listForms

jotform.listForms

getForm

jotform.getForm

getFormQuestions

jotform.getFormQuestions

Integration with RobinPath

import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/jotform";

const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);

const result = await rp.executeScript(`
  jotform.setCredentials "your-credentials"
  jotform.listForms
`);

Full API Reference

See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.

Related Modules

License

MIT

Versions (1)

VersionTagPublished
0.1.0latestyesterday
Install
$ robinpath install @robinpath/jotform
Version0.1.0
LicenseMIT
Unpacked Size4.1 KB
Versions1
Weekly Downloads0
Total Downloads0
Stars0
Last Publishyesterday
Createdyesterday

Category

utilities