Open Connector
All tools

Streak

Use Streak to manage Gmail-native CRM pipelines, boxes, fields, webhooks, and newsfeed activity.

streakv1.0.08 tools

Authentication

MethodKindStatusDetails
Basic Authbasicavailable

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 pipeline

Create a pipeline

Authentication

Connected account required

Tags

createpipeline
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.

Authentication

Connected account required

Tags

getpipelinenewsfeed
List all contact fieldsSTREAK_LIST_CONTACT_FIELDSGet all field definitions for contacts in a team

Get all field definitions for contacts in a team

Authentication

Connected account required

Tags

listcontactfields
List all organization fieldsSTREAK_LIST_ORGANIZATION_FIELDSGet all field definitions for organizations in a team

Get all field definitions for organizations in a team

Authentication

Connected account required

Tags

listorganizationfields
Get all pipeline-based webhooksSTREAK_LIST_PIPELINE_WEBHOOKSGet all pipeline-based webhooks

Get all pipeline-based webhooks

Authentication

Connected account required

Tags

listpipelinewebhooks
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).

Authentication

Connected account required

Tags

updatebox
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

Authentication

Connected account required

Tags

updatecontactfieldvalue
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

Authentication

Connected account required

Tags

updateorganizationfieldvalue

Provider resources