Open Connector
All tools

Typeform

No catalog description yet.

typeformv1.0.011 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: "TYPEFORM_CREATE_FORM",  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("TYPEFORM_CREATE_FORM", {  connected_account_id: "conn_...",  arguments: { /* match this tool's input schema */ },});
oc tools execute TYPEFORM_CREATE_FORM --data '{ }'

Tool catalog

Available tools

11 callable operations

Create Typeform formTYPEFORM_CREATE_FORMCreates a new Typeform form from a JSON form definition.

Creates a new Typeform form from a JSON form definition.

Authentication

Connected account required

Scopes

forms:write

Tags

formswrite
Delete Typeform formTYPEFORM_DELETE_FORMDeletes a Typeform form by ID.

Deletes a Typeform form by ID.

Authentication

Connected account required

Scopes

forms:write

Tags

formsdelete
Delete Typeform webhookTYPEFORM_DELETE_WEBHOOKDeletes a Typeform webhook by tag.

Deletes a Typeform webhook by tag.

Authentication

Connected account required

Scopes

webhooks:write

Tags

webhooksdelete
Get Typeform formTYPEFORM_GET_FORMGets a Typeform form definition by ID.

Gets a Typeform form definition by ID.

Authentication

Connected account required

Scopes

forms:read

Tags

formsread
Get Typeform accountTYPEFORM_GET_MEGets the authenticated Typeform account profile.

Gets the authenticated Typeform account profile.

Authentication

Connected account required

Scopes

accounts:read

Tags

accountread
Get Typeform webhookTYPEFORM_GET_WEBHOOKGets a specific Typeform webhook by tag.

Gets a specific Typeform webhook by tag.

Authentication

Connected account required

Scopes

webhooks:read

Tags

webhooksread
List Typeform responsesTYPEFORM_LIST_FORM_RESPONSESRetrieves submitted responses for a Typeform form.

Retrieves submitted responses for a Typeform form.

Authentication

Connected account required

Scopes

responses:read

Tags

responsesread
List Typeform formsTYPEFORM_LIST_FORMSLists forms available to the authenticated account.

Lists forms available to the authenticated account.

Authentication

Connected account required

Scopes

forms:read

Tags

formsread
List Typeform webhooksTYPEFORM_LIST_WEBHOOKSLists configured webhooks for a Typeform form.

Lists configured webhooks for a Typeform form.

Authentication

Connected account required

Scopes

webhooks:read

Tags

webhooksread
Update Typeform formTYPEFORM_UPDATE_FORMUpdates a Typeform form definition.

Updates a Typeform form definition.

Authentication

Connected account required

Scopes

forms:write

Tags

formswrite
Create or update Typeform webhookTYPEFORM_UPSERT_WEBHOOKCreates or updates a Typeform webhook target for form submissions.

Creates or updates a Typeform webhook target for form submissions.

Authentication

Connected account required

Scopes

webhooks:write

Tags

webhookswrite