← Tools Reference

Jotform

Jotform integration (Productivity, Data). Imported from open-connector.

API key7 toolshttps://api.jotform.com
GET
jotform_get_current_user
Get the current Jotform account associated with the authenticated API key.

/user

GET
jotform_list_forms
List forms available to the authenticated Jotform account.

/user/forms

6 parameters
ParamTypeRequiredDescription
limitintegeroptionalThe maximum number of forms to return.
offsetintegeroptionalThe starting offset for the forms page.
searchstringoptionalThe free-text search query for matching forms.
folderstringoptionalThe folder ID used to filter returned forms.
orderbystringoptionalThe Jotform form field used for upstream sorting.
sortingstringoptionalThe upstream sort direction used when listing forms.
GET
jotform_get_form
Get one Jotform form by form ID.

/form/{formId}

1 parameter
ParamTypeRequiredDescription
formIdstringrequiredThe Jotform form ID to retrieve.
GET
jotform_list_form_questions
List the question definitions configured on one Jotform form.

/form/{formId}/questions

1 parameter
ParamTypeRequiredDescription
formIdstringrequiredThe Jotform form ID whose questions should be listed.
GET
jotform_list_form_submissions
List submissions for one Jotform form.

/form/{formId}/submissions

3 parameters
ParamTypeRequiredDescription
formIdstringrequiredThe Jotform form ID whose submissions should be listed.
limitintegeroptionalThe maximum number of submissions to return.
offsetintegeroptionalThe starting offset for the submissions page.
GET
jotform_get_submission
Get one Jotform submission by submission ID.

/submission/{submissionId}

1 parameter
ParamTypeRequiredDescription
submissionIdstringrequiredThe Jotform submission ID to retrieve.
POST
jotform_create_submission
Create a submission on a Jotform form using question IDs and answer values.

/submissions

4 parameters
ParamTypeRequiredDescription
formIdstringrequiredThe Jotform form ID that will receive the submission.
answersobjectrequiredThe submission answers keyed by Jotform question ID. Values may be scalars, arr…
markAsNewbooleanoptionalWhether Jotform should mark the submission as new.
flagbooleanoptionalWhether Jotform should set the submission flag.