KosmoKrator

forms

Jotform CLI for CI

Use the Jotform CLI for CI with headless JSON commands, schema discovery, credentials, and permission controls.

7 functions 6 read 1 write API key auth

Jotform CLI for CI

Run integration calls from CI jobs with JSON output, explicit credentials, and predictable exit status.

Use this shape when a pipeline needs to read or update an external service. The Jotform CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.

Command Shape

# Jotform CLI for CI
kosmokrator integrations:configure jotform --set api_key="$JOTFORM_API_KEY" --enable --read allow --write ask --json
kosmo integrations:call jotform.jotform_list_forms '{"limit":1,"offset":1,"orderby":"example_orderby","status":"example_status","title":"example_title"}' --json

Discovery Before Execution

Agents and scripts can inspect Jotform docs and schemas before choosing a function.

kosmo integrations:docs jotform --json
kosmo integrations:docs jotform.jotform_list_forms --json
kosmo integrations:schema jotform.jotform_list_forms --json
kosmo integrations:search "Jotform" --json
kosmo integrations:list --json

Useful Jotform CLI Functions

FunctionTypeParametersDescription
jotform.jotform_list_forms Read limit, offset, orderby, status, title List all forms owned by the authenticated Jotform user. Returns form IDs, titles, creation dates, and status. Supports pagination and filtering.
jotform.jotform_get_form Read form_id Get detailed information about a specific Jotform form, including its properties, status, URL, and creation date.
jotform.jotform_list_submissions Read form_id, limit, offset, orderby, created_at, status List submissions for a specific Jotform form. Returns submission IDs, timestamps, and answers. Supports pagination, filtering by date, and ordering.
jotform.jotform_get_submission Read submission_id Get detailed information about a specific Jotform submission, including all form answers, metadata, and timestamps.
jotform.jotform_create_form Write title, questions, properties Create a new form in Jotform. Provide form properties such as title, questions (fields), and other settings. Returns the created form with its ID and URL.
jotform.jotform_list_questions Read form_id, offset List all questions (form fields) for a specific Jotform form. Returns field types, labels, names, and configuration options.
jotform.jotform_get_current_user Read none Get profile information for the currently authenticated Jotform user, including username, email, account type, and usage stats.

Automation Notes

Related Jotform CLI Pages