Formbricks integration
Formbricks is an open-source platform for building and managing surveys,…
- Provider
- formbricks
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 45 available
Quick start
Call Formbricks from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Formbricks'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(
"FORMBRICKS_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 Formbricks 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
45 actions exposed via the
Formbricks integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
FORMBRICKS_CHECK_HEALTH -
FORMBRICKS_CREATE_ACTION_CLASS -
FORMBRICKS_CREATE_ATTRIBUTE_CLASS -
FORMBRICKS_CREATE_CLIENT_USER -
FORMBRICKS_CREATE_CONTACT -
FORMBRICKS_CREATE_DISPLAY -
FORMBRICKS_CREATE_RESPONSE -
FORMBRICKS_CREATE_SURVEY -
FORMBRICKS_CREATE_WEBHOOK -
FORMBRICKS_DELETE_ATTRIBUTE_CLASS -
FORMBRICKS_DELETE_PERSON -
FORMBRICKS_DELETE_RESPONSE
Show all 45 actions
-
FORMBRICKS_DELETE_SURVEY -
FORMBRICKS_DELETE_TEAM -
FORMBRICKS_DELETE_WEBHOOK -
FORMBRICKS_GET_ACCOUNT_INFO -
FORMBRICKS_GET_ALL_CONTACTS -
FORMBRICKS_GET_ATTRIBUTE_CLASS -
FORMBRICKS_GET_CLIENT_CONTACTS_STATE -
FORMBRICKS_GET_CONTACT_ATTRIBUTE_KEY -
FORMBRICKS_GET_CONTACT_BY_ID -
FORMBRICKS_GET_ME -
FORMBRICKS_GET_PERSON_BY_ID -
FORMBRICKS_GET_RESPONSES -
FORMBRICKS_GET_ROLES -
FORMBRICKS_GET_WEBHOOK -
FORMBRICKS_LIST_ACTION_CLASSES -
FORMBRICKS_LIST_ATTRIBUTE_CLASSES -
FORMBRICKS_LIST_CLIENT_ENVIRONMENT -
FORMBRICKS_LIST_CONTACT_ATTRIBUTE_KEYS -
FORMBRICKS_LIST_HEALTH -
FORMBRICKS_LIST_MANAGEMENT_CONTACT_ATTRIBUTES -
FORMBRICKS_LIST_MANAGEMENT_ME -
FORMBRICKS_LIST_MANAGEMENT_PEOPLE -
FORMBRICKS_LIST_ORGANIZATIONS_PROJECT_TEAMS -
FORMBRICKS_LIST_ORGANIZATION_TEAMS -
FORMBRICKS_LIST_SURVEYS -
FORMBRICKS_LIST_WEBHOOKS -
FORMBRICKS_UPDATE_CONTACT_ATTRIBUTES -
FORMBRICKS_UPDATE_RESPONSE -
FORMBRICKS_UPDATE_SURVEY -
FORMBRICKS_UPDATE_WEBHOOK -
FORMBRICKS_UPLOAD_BULK_CONTACTS -
FORMBRICKS_UPLOAD_PRIVATE_FILE -
FORMBRICKS_UPLOAD_PUBLIC_FILE
Build with Formbricks
Open OverSkill, describe what you want to build, and reference Formbricks in your prompt — the AI will wire up the integration automatically.