Open Connector
All tools

Fillout logoFillout

No catalog description yet.

filloutvcatalog-v18 tools

Authentication

MethodKindStatusDetails
OAuth 2.0oauth2available

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 form

Create new submissions for a form

Authentication

Connected account required

Tags

createsubmissions
Create a webhookFILLOUT_CREATE_WEBHOOKCreates a webhook for a given form

Creates a webhook for a given form

Authentication

Connected account required

Tags

createwebhook
Delete submission by IDFILLOUT_DELETE_SUBMISSION_BY_IDDeletes a submission by its ID

Deletes a submission by its ID

Authentication

Connected account required

Tags

deletesubmissionbyid
Get all submissionsFILLOUT_GET_ALL_SUBMISSIONSReturns a list of all submissions for a given form

Returns a list of all submissions for a given form

Authentication

Connected account required

Tags

getallsubmissions
Get form metadataFILLOUT_GET_FORM_METADATAGiven the formId, returns all the questions in that form and other metadata

Given the formId, returns all the questions in that form and other metadata

Authentication

Connected account required

Tags

getformmetadata
Get all formsFILLOUT_GET_FORMSReturns a list of all your forms

Returns a list of all your forms

Authentication

Connected account required

Tags

getforms
Get submission by IDFILLOUT_GET_SUBMISSION_BY_IDReturns a single submission by its ID

Returns a single submission by its ID

Authentication

Connected account required

Tags

getsubmissionbyid
Remove a webhookFILLOUT_REMOVE_WEBHOOKRemoves a webhook

Removes a webhook

Authentication

Connected account required

Tags

removewebhook