Streak

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

Integrate the Streak API with the Schedule API

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

Create Box with Streak API on Custom Interval from Schedule API
Schedule + Streak
 
Try it
Create Box with Streak API on Daily schedule from Schedule API
Schedule + Streak
 
Try it
Create Box with Streak API on Monthly Schedule from Schedule API
Schedule + Streak
 
Try it
Create Box with Streak API on Weekly schedule from Schedule API
Schedule + Streak
 
Try it
Create Task with Streak API on Custom Interval from Schedule API
Schedule + Streak
 
Try it
Box Changed Pipeline (Instant) from the Streak API

Emit new event when a box changes pipelines.

 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
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
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
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
Update Box Field Value with the Streak API

Update the values of the fields for 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 Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.