Jotform integration
Jotform is an online form builder that allows users to create and manage forms…
- Provider
- jotform
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 18 available
Quick start
Call Jotform from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Jotform's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"JOTFORM_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Jotform API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
18 actions exposed via the
Jotform integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
JOTFORM_CLONE_FORM -
JOTFORM_CREATE_LABEL -
JOTFORM_DELETE_LABEL -
JOTFORM_GET_LABEL -
JOTFORM_GET_LABEL_RESOURCES -
JOTFORM_GET_SYSTEM_PLAN -
JOTFORM_GET_USER_DETAILS -
JOTFORM_GET_USER_FOLDERS -
JOTFORM_GET_USER_FORMS -
JOTFORM_GET_USER_HISTORY -
JOTFORM_GET_USER_REPORTS -
JOTFORM_GET_USER_SETTINGS
Show all 18 actions
-
JOTFORM_GET_USER_SETTINGS_BY_KEY -
JOTFORM_GET_USER_SUBMISSIONS -
JOTFORM_GET_USER_USAGE -
JOTFORM_REMOVE_LABEL_RESOURCES -
JOTFORM_UPDATE_LABEL -
JOTFORM_UPDATE_USER_SETTINGS
Build with Jotform
Open OverSkill, describe what you want to build, and reference Jotform in your prompt — the AI will wire up the integration automatically.