Streak
Use Streak to manage Gmail-native CRM pipelines, boxes, fields, webhooks, and newsfeed activity.
认证方式
| 方式 | 底层类型 | 状态 | 说明 |
|---|---|---|---|
| Basic Auth | basic | 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: "STREAK_CREATE_PIPELINE", 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("STREAK_CREATE_PIPELINE", { connected_account_id: "conn_...", arguments: { /* match this tool's input schema */ },});oc tools execute STREAK_CREATE_PIPELINE --data '{ }'Tool 目录
可用 Tools
8 个可调用操作
Create a pipelineSTREAK_CREATE_PIPELINECreate a pipeline需要连接
Create a pipeline
认证
需要 Connected AccountTags
Newsfeed for pipelinesSTREAK_GET_PIPELINE_NEWSFEEDThis endpoint will give you not only the historical changes for a particular [pipeline](reference#getting-a-specific-pipeline), but also the historical changes for all [boxes](reference#get-a-box) contained within the pipeline. It is limited to the 50 most recent events.需要连接
This endpoint will give you not only the historical changes for a particular [pipeline](reference#getting-a-specific-pipeline), but also the historical changes for all [boxes](reference#get-a-box) contained within the pipeline. It is limited to the 50 most recent events.
认证
需要 Connected AccountTags
List all contact fieldsSTREAK_LIST_CONTACT_FIELDSGet all field definitions for contacts in a team需要连接
Get all field definitions for contacts in a team
认证
需要 Connected AccountTags
List all organization fieldsSTREAK_LIST_ORGANIZATION_FIELDSGet all field definitions for organizations in a team需要连接
Get all field definitions for organizations in a team
认证
需要 Connected AccountTags
Get all pipeline-based webhooksSTREAK_LIST_PIPELINE_WEBHOOKSGet all pipeline-based webhooks需要连接
Get all pipeline-based webhooks
认证
需要 Connected AccountTags
Update a boxSTREAK_UPDATE_BOXThis call lets you edit the properties of a [box](reference#get-a-box).需要连接
This call lets you edit the properties of a [box](reference#get-a-box).
认证
需要 Connected AccountTags
Update contact field valueSTREAK_UPDATE_CONTACT_FIELD_VALUEUpdate a single field value for a specific contact需要连接
Update a single field value for a specific contact
认证
需要 Connected AccountTags
Update organization field valueSTREAK_UPDATE_ORGANIZATION_FIELD_VALUEUpdate a single field value for a specific organization需要连接
Update a single field value for a specific organization
认证
需要 Connected AccountTags