Fillout
Connect to Fillout to list forms, read submissions, and manage webhooks.
fillout-api-keyv1.0.08 个 Tools
认证方式
| 方式 | 底层类型 | 状态 | 说明 |
|---|---|---|---|
| API Key | api_key | available | — |
调用示例
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 目录
可用 Tools
8 个可调用操作
Create submissionsFILLOUT_API_KEY_CREATE_SUBMISSIONSCreate new submissions for a form需要连接
Create new submissions for a form
认证
需要 Connected AccountTags
createsubmissions
Create a webhookFILLOUT_API_KEY_CREATE_WEBHOOKCreates a webhook for a given form需要连接
Creates a webhook for a given form
认证
需要 Connected AccountTags
createwebhook
Delete submission by IDFILLOUT_API_KEY_DELETE_SUBMISSION_BY_IDDeletes a submission by its ID需要连接
Deletes a submission by its ID
认证
需要 Connected AccountTags
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
认证
需要 Connected AccountTags
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
认证
需要 Connected AccountTags
getformmetadata
Get all formsFILLOUT_API_KEY_GET_FORMSReturns a list of all your forms需要连接
Returns a list of all your forms
认证
需要 Connected AccountTags
getforms
Get submission by IDFILLOUT_API_KEY_GET_SUBMISSION_BY_IDReturns a single submission by its ID需要连接
Returns a single submission by its ID
认证
需要 Connected AccountTags
getsubmissionbyid
Remove a webhookFILLOUT_API_KEY_REMOVE_WEBHOOKRemoves a webhook需要连接
Removes a webhook
认证
需要 Connected AccountTags
removewebhook