Streak
Use Streak to manage Gmail-native CRM pipelines, boxes, fields, webhooks, and newsfeed activity.
Authentication
| Method | Kind | Status | Details |
|---|---|---|---|
| Basic Auth | basic | available | — |
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: "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 catalog
Available tools
8 callable operations
Create a pipelineSTREAK_CREATE_PIPELINECreate a pipelineConnection
Create a pipeline
Authentication
Connected account requiredTags
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.Connection
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.
Authentication
Connected account requiredTags
List all contact fieldsSTREAK_LIST_CONTACT_FIELDSGet all field definitions for contacts in a teamConnection
Get all field definitions for contacts in a team
Authentication
Connected account requiredTags
List all organization fieldsSTREAK_LIST_ORGANIZATION_FIELDSGet all field definitions for organizations in a teamConnection
Get all field definitions for organizations in a team
Authentication
Connected account requiredTags
Get all pipeline-based webhooksSTREAK_LIST_PIPELINE_WEBHOOKSGet all pipeline-based webhooksConnection
Get all pipeline-based webhooks
Authentication
Connected account requiredTags
Update a boxSTREAK_UPDATE_BOXThis call lets you edit the properties of a [box](reference#get-a-box).Connection
This call lets you edit the properties of a [box](reference#get-a-box).
Authentication
Connected account requiredTags
Update contact field valueSTREAK_UPDATE_CONTACT_FIELD_VALUEUpdate a single field value for a specific contactConnection
Update a single field value for a specific contact
Authentication
Connected account requiredTags
Update organization field valueSTREAK_UPDATE_ORGANIZATION_FIELD_VALUEUpdate a single field value for a specific organizationConnection
Update a single field value for a specific organization
Authentication
Connected account requiredTags