Skip to content

JotForm

JotForm is an online form builder that enables users to create customized forms for various purposes without needing coding skills.

Categories: surveys-and-feedback

Type: jotform/v1


Connections

Version: 1

API Key

Properties

NameLabelTypeDescriptionRequired
regionRegionSTRING
Options us, eu
true
keyKeySTRINGtrue
valueAPI KeySTRINGtrue

Actions

Get Form Submissions

Name: getFormSubmissions

Get all submissions for a specific form.

Properties

NameLabelTypeDescriptionRequired
formIdForm IDSTRINGID of the form to retrieve submissions for.true

Example JSON Structure

{
"label" : "Get Form Submissions",
"name" : "getFormSubmissions",
"parameters" : {
"formId" : ""
},
"type" : "jotform/v1/getFormSubmissions"
}

Output

Type: OBJECT

Properties

NameTypeDescription
contentARRAY
Items [{STRING(id), STRING(form_id), STRING(status), STRING(new), STRING(notes)}]

Output Example

{
"content" : [ {
"id" : "",
"form_id" : "",
"status" : "",
"new" : "",
"notes" : ""
} ]
}