Streak

Streak is a flexible CRM and process management system that lives inside your Gmail inbox.

Integrate the Streak API with the Gmail (Developer App) API

Setup the Streak API trigger to run a workflow which integrates with the Gmail (Developer App) API. Pipedream's integration platform allows you to integrate Streak and Gmail (Developer App) remarkably fast. Free for developers.

Add Label to Email with Gmail (Developer App) API on Box Changed Pipeline (Instant) from Streak API
Streak + Gmail (Developer App)
 
Try it
Add Label to Email with Gmail (Developer App) API on Box Changed Stage (Instant) from Streak API
Streak + Gmail (Developer App)
 
Try it
Add Label to Email with Gmail (Developer App) API on New Box (Instant) from Streak API
Streak + Gmail (Developer App)
 
Try it
Add Label to Email with Gmail (Developer App) API on New Comment (Instant) from Streak API
Streak + Gmail (Developer App)
 
Try it
Add Label to Email with Gmail (Developer App) API on New Contact (Instant) from Streak API
Streak + Gmail (Developer App)
 
Try it
Box Changed Pipeline (Instant) from the Streak API

Emit new event when a box changes pipelines.

 
Try it
Box Changed Stage (Instant) from the Streak API

Emit new event when a box's stage is updated in a pipeline.

 
Try it
New Attachment Received from the Gmail (Developer App) API

Emit new event for each attachment in a message received. This source is capped at 100 max new messages per run.

 
Try it
New Box (Instant) from the Streak API

Emit new event when a new box is created in a pipeline.

 
Try it
New Email Received from the Gmail (Developer App) API

Emit new event when an email is received. This source is capped at 100 max new messages per run.

 
Try it
Add Label to Email with the Gmail (Developer App) API

Add a label to an email message. See the docs

 
Try it
Create Draft with the Gmail (Developer App) API

Create a draft from your Google Workspace email account

 
Try it
Create Box with the Streak API

Create a new box in Streak. See the docs

 
Try it
Download Attachement with the Gmail (Developer App) API

Download an attachment by attachmentId to the /tmp directory. See the docs

 
Try it
Create Task with the Streak API

Create a new task in a box. See the docs

 
Try it

Overview of Streak

The Streak API taps into the core of Streak’s CRM functionality within Gmail, allowing users to automate interactions with pipeline data, such as leads, contacts, and sales opportunities. With Pipedream, you can harness this API to craft serverless workflows that react to events in Streak and connect with countless other services to streamline CRM tasks, sync data across platforms, or trigger communications based on pipeline changes.

Connect Streak

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    streak: {
      type: "app",
      app: "streak",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.streak.com/api/v1/users/me`,
      auth: {
        username: `${this.streak.$auth.api_key}`,
        password: ``,
      },
    })
  },
})

Overview of Gmail (Developer App)

With the Gmail (Developer App) API on Pipedream, you can automate a variety of email-related tasks, directly manipulating your Gmail account to streamline workflows. From sending emails programmatically to parsing new inbound messages for data extraction, the API allows for deep interaction with your Gmail inbox. Use cases include automating follow-ups, organizing your inbox with filters and labels, and synchronizing important email events with other services to act upon new information instantly.

Connect Gmail (Developer App)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    gmail_custom_oauth: {
      type: "app",
      app: "gmail_custom_oauth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/oauth2/v1/userinfo`,
      headers: {
        Authorization: `Bearer ${this.gmail_custom_oauth.$auth.oauth_access_token}`,
      },
    })
  },
})