Fillout
Connect to Fillout to list forms, read submissions, and manage webhooks.
fillout-api-keyv1.0.08 tools
Authentication
| Method | Kind | Status | Details |
|---|---|---|---|
| API Key | api_key | available | — |
Call a tool
import { createClient } from "@open-connector/sdk";const oc = createClient({ baseUrl: "https://api.openconnector.dev", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await oc.executeTool({ slug: "FILLOUT_API_KEY_CREATE_SUBMISSIONS", connectedAccountId: "conn_...", arguments: { /* match this tool's input schema */ },});import Composio from "@composio/client";const composio = new Composio({ baseURL: "https://api.openconnector.dev/composio", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await composio.tools.execute("FILLOUT_API_KEY_CREATE_SUBMISSIONS", { connected_account_id: "conn_...", arguments: { /* match this tool's input schema */ },});oc tools execute FILLOUT_API_KEY_CREATE_SUBMISSIONS --data '{ }'Tool catalog
Available tools
8 callable operations
Create submissionsFILLOUT_API_KEY_CREATE_SUBMISSIONSCreate new submissions for a formConnection
Create new submissions for a form
Authentication
Connected account requiredTags
createsubmissions
Create a webhookFILLOUT_API_KEY_CREATE_WEBHOOKCreates a webhook for a given formConnection
Creates a webhook for a given form
Authentication
Connected account requiredTags
createwebhook
Delete submission by IDFILLOUT_API_KEY_DELETE_SUBMISSION_BY_IDDeletes a submission by its IDConnection
Deletes a submission by its ID
Authentication
Connected account requiredTags
deletesubmissionbyid
Get all submissionsFILLOUT_API_KEY_GET_ALL_SUBMISSIONSReturns a list of all submissions for a given formConnection
Returns a list of all submissions for a given form
Authentication
Connected account requiredTags
getallsubmissions
Get form metadataFILLOUT_API_KEY_GET_FORM_METADATAGiven the formId, returns all the questions in that form and other metadataConnection
Given the formId, returns all the questions in that form and other metadata
Authentication
Connected account requiredTags
getformmetadata
Get all formsFILLOUT_API_KEY_GET_FORMSReturns a list of all your formsConnection
Returns a list of all your forms
Authentication
Connected account requiredTags
getforms
Get submission by IDFILLOUT_API_KEY_GET_SUBMISSION_BY_IDReturns a single submission by its IDConnection
Returns a single submission by its ID
Authentication
Connected account requiredTags
getsubmissionbyid
Remove a webhookFILLOUT_API_KEY_REMOVE_WEBHOOKRemoves a webhookConnection
Removes a webhook
Authentication
Connected account requiredTags
removewebhook