Loading...
Loading...
Jotform integration. Manage data, records, and automate workflows. Use when the user wants to interact with Jotform data.
npx skill4agent add membranedev/application-skills jotformmembranenpm install -g @membranehq/climembrane login --tenantmembrane login complete <code>membrane search jotform --elementType=connector --jsonoutput.items[0].element?.idmembrane connect --connectorId=CONNECTOR_ID --jsonmembrane connection list --jsonconnectionIdmembrane action list --intent=QUERY --connectionId=CONNECTION_ID --json| Name | Key | Description |
|---|---|---|
| List Forms | list-forms | Retrieves a list of all forms belonging to the authenticated user |
| List Form Submissions | list-form-submissions | Retrieves all submissions for a specific form |
| List User Submissions | list-user-submissions | Retrieves all submissions across all forms for the authenticated user |
| List Folders | list-folders | Retrieves a list of all folders belonging to the authenticated user |
| List Form Webhooks | list-form-webhooks | Retrieves all webhooks configured for a specific form |
| List Form Reports | list-form-reports | Retrieves all reports for a specific form |
| Get Form | get-form | Retrieves details of a specific form by its ID |
| Get Submission | get-submission | Retrieves details of a specific submission by its ID |
| Get Form Questions | get-form-questions | Retrieves all questions/fields from a specific form including field IDs, types, and configurations |
| Get Form Properties | get-form-properties | Retrieves all properties and settings of a specific form |
| Get Folder | get-folder | Retrieves details of a specific folder including its forms |
| Create Submission | create-submission | Creates a new submission for a specific form. |
| Create Folder | create-folder | Creates a new folder for organizing forms |
| Create Webhook | create-webhook | Creates a new webhook for a specific form to receive real-time notifications when submissions are received |
| Update Submission | update-submission | Updates an existing submission |
| Delete Form | delete-form | Deletes a specific form by its ID |
| Delete Submission | delete-submission | Deletes a specific submission by its ID |
| Delete Folder | delete-folder | Deletes a folder and optionally its subfolders |
| Delete Webhook | delete-webhook | Deletes a webhook from a specific form |
| Get User Info | get-user-info | Retrieves information about the authenticated user including account type, usage limits, and profile details |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --jsonmembrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"membrane request CONNECTION_ID /path/to/endpoint| Flag | Description |
|---|---|
| HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
| Add a request header (repeatable), e.g. |
| Request body (string) |
| Shorthand to send a JSON body and set |
| Send the body as-is without any processing |
| Query-string parameter (repeatable), e.g. |
| Path parameter (repeatable), e.g. |
membrane action list --intent=QUERY