Open Connector
All tools

Fillout

Connect to Fillout to list forms, read submissions, and manage webhooks.

fillout-api-keyv1.0.08 tools

Authentication

MethodKindStatusDetails
API Keyapi_keyavailable

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 form

Create new submissions for a form

Authentication

Connected account required

Tags

createsubmissions
Create a webhookFILLOUT_API_KEY_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_API_KEY_DELETE_SUBMISSION_BY_IDDeletes a submission by its ID

Deletes a submission by its ID

Authentication

Connected account required

Tags

deletesubmissionbyid
Get all submissionsFILLOUT_API_KEY_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_API_KEY_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_API_KEY_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_API_KEY_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_API_KEY_REMOVE_WEBHOOKRemoves a webhook

Removes a webhook

Authentication

Connected account required

Tags

removewebhook

Provider resources