Fillout
No catalog description yet.
filloutvcatalog-v18 tools
Authentication
| Method | Kind | Status | Details |
|---|---|---|---|
| OAuth 2.0 | oauth2 | 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_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_CREATE_SUBMISSIONS", { connected_account_id: "conn_...", arguments: { /* match this tool's input schema */ },});oc tools execute FILLOUT_CREATE_SUBMISSIONS --data '{ }'Tool catalog
Available tools
8 callable operations
Create submissionsFILLOUT_CREATE_SUBMISSIONSCreate new submissions for a formConnection
Create new submissions for a form
Authentication
Connected account requiredTags
createsubmissions
Create a webhookFILLOUT_CREATE_WEBHOOKCreates a webhook for a given formConnection
Creates a webhook for a given form
Authentication
Connected account requiredTags
createwebhook
Delete submission by IDFILLOUT_DELETE_SUBMISSION_BY_IDDeletes a submission by its IDConnection
Deletes a submission by its ID
Authentication
Connected account requiredTags
deletesubmissionbyid
Get all submissionsFILLOUT_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_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_GET_FORMSReturns a list of all your formsConnection
Returns a list of all your forms
Authentication
Connected account requiredTags
getforms
Get submission by IDFILLOUT_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_REMOVE_WEBHOOKRemoves a webhookConnection
Removes a webhook
Authentication
Connected account requiredTags
removewebhook