Streak

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

Integrate the Streak API with the Node API

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

Run Node Code with Node API on Box Changed Pipeline (Instant) from Streak API
Streak + Node
 
Try it
Run Node Code with Node API on Box Changed Stage (Instant) from Streak API
Streak + Node
 
Try it
Run Node Code with Node API on New Box (Instant) from Streak API
Streak + Node
 
Try it
Run Node Code with Node API on New Comment (Instant) from Streak API
Streak + Node
 
Try it
Run Node Code with Node API on New Contact (Instant) from Streak API
Streak + Node
 
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 Box (Instant) from the Streak API

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

 
Try it
New Comment (Instant) from the Streak API

Emit new event when a new comment is created within a pipeline.

 
Try it
New Contact (Instant) from the Streak API

Emit new event when a new contact is created within a team.

 
Try it
Run Node Code with the Node API

Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.

 
Try it
Create Box with the Streak API

Create a new box in Streak. See the docs

 
Try it
Create Task with the Streak API

Create a new task in a box. See the docs

 
Try it
Link Boxes with the Streak API

Link boxes to a specific box. See the docs

 
Try it
Update Box with the Streak API

Update the properties for a box. To update field values use Update Box Field Value. 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 Node

Develop, run and deploy your Node.js code in Pipedream workflows, using it between no-code steps, with connected accounts, or integrate Data Stores and File Stores.

This includes installing NPM packages, within your code without having to manage a package.json file or running npm install.

Below is an example of installing the axios package in a Pipedream Node.js code step. Pipedream imports the axios package, performs the API request, and shares the response with subsequent workflow steps:

Connect Node

1
2
3
4
5
6
7
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
  async run({ steps, $ }) {
    // Return data to use it in future steps
    return steps.trigger.event
  },
})

Community Posts

Automate checking a ticket system's availability with Node.js and Pipedream
Automate checking a ticket system's availability with Node.js and Pipedream
How I used Node.js and Pipedream to automatically scrape a ticket booking site and notify me if availability had changed.