Fillout Forms integration
Fillout is a platform that allows users to create and manage forms, offering a…
- Provider
- fillout_forms
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 22 available
Quick start
Call Fillout Forms from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Fillout Forms'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(
"FILLOUT_FORMS_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 Fillout Forms 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
22 actions exposed via the
Fillout Forms integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
FILLOUT_FORMS_AUTHORIZE_O_AUTH -
FILLOUT_FORMS_CREATE_DATABASE -
FILLOUT_FORMS_CREATE_DATABASE_WEBHOOK -
FILLOUT_FORMS_CREATE_FIELD -
FILLOUT_FORMS_CREATE_RECORD -
FILLOUT_FORMS_CREATE_TABLE -
FILLOUT_FORMS_DELETE_DATABASE -
FILLOUT_FORMS_DELETE_DATABASE_WEBHOOK -
FILLOUT_FORMS_DELETE_FIELD -
FILLOUT_FORMS_DELETE_RECORD -
FILLOUT_FORMS_DELETE_TABLE -
FILLOUT_FORMS_GET_DATABASE_BY_ID
Show all 22 actions
-
FILLOUT_FORMS_GET_DATABASES -
FILLOUT_FORMS_GET_FORMS -
FILLOUT_FORMS_GET_RECORD_BY_ID -
FILLOUT_FORMS_INVALIDATE_ACCESS_TOKEN -
FILLOUT_FORMS_LIST_DATABASE_WEBHOOKS -
FILLOUT_FORMS_LIST_RECORDS -
FILLOUT_FORMS_REMOVE_FORM_WEBHOOK -
FILLOUT_FORMS_UPDATE_FIELD -
FILLOUT_FORMS_UPDATE_RECORD -
FILLOUT_FORMS_UPDATE_TABLE
Build with Fillout Forms
Open OverSkill, describe what you want to build, and reference Fillout Forms in your prompt — the AI will wire up the integration automatically.