Pivotal Tracker

Pivotal Tracker is the agile project management tool of choice for developers around the world for real-time collaboration around a shared, prioritized backlog.

Integrate the Pivotal Tracker API with the Supabase API

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

Create Project with Pivotal Tracker API on New Row Added from Supabase API
Supabase + Pivotal Tracker
 
Try it
Create Project with Pivotal Tracker API on New Webhook Event (Instant) from Supabase API
Supabase + Pivotal Tracker
 
Try it
Create Story with Pivotal Tracker API on New Row Added from Supabase API
Supabase + Pivotal Tracker
 
Try it
Create Story with Pivotal Tracker API on New Webhook Event (Instant) from Supabase API
Supabase + Pivotal Tracker
 
Try it
Delete Row with Supabase API on New Activity Performed (Instant) from Pivotal Tracker API
Pivotal Tracker + Supabase
 
Try it
New Activity Performed (Instant) from the Pivotal Tracker API

Emit new event when any activity is performed in a project.

 
Try it
New Row Added from the Supabase API

Emit new event for every new row added in a table. See documentation here

 
Try it
New Project Created from the Pivotal Tracker API

Emit new event when a new project is created.

 
Try it
New Webhook Event (Instant) from the Supabase API

Emit new event for every insert, update, or delete operation in a table. This source requires user configuration using the Supabase website. More information in the README. Also see documentation here

 
Try it
New Story Created (Instant) from the Pivotal Tracker API

Emit new event when a new story is created in a project.

 
Try it
Create Project with the Pivotal Tracker API

Create a new project. See the docs here

 
Try it
Delete Row with the Supabase API

Deletes row(s) in a database. See the docs here

 
Try it
Create Story with the Pivotal Tracker API

Create a new story in a project. See the docs here

 
Try it
Insert Row with the Supabase API

Inserts a new row into a database. See the docs here

 
Try it
Remote Procedure Call with the Supabase API

Call a Postgres function in a database. See the docs here

 
Try it

Overview of Pivotal Tracker

Pipedream's integration with the Pivotal Tracker API turns your project management into a powerhouse of automation and connectivity. It allows you to orchestrate workflows that can respond to changes in your projects, stories, and tasks in real-time. For instance, you can sync project updates with other tools, extract metrics for reporting, or even streamline notification systems to keep your entire team in the loop effortlessly.

Connect Pivotal Tracker

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: {
    pivotal_tracker: {
      type: "app",
      app: "pivotal_tracker",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.pivotaltracker.com/services/v5/me`,
      headers: {
        "X-TrackerToken": `${this.pivotal_tracker.$auth.api_token}`,
      },
    })
  },
})

Overview of Supabase

Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.

Connect Supabase

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: {
    supabase: {
      type: "app",
      app: "supabase",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.supabase.$auth.subdomain}.supabase.co/rest/v1/`,
      headers: {
        Authorization: `Bearer ${this.supabase.$auth.service_key}`,
        "apikey": `${this.supabase.$auth.service_key}`,
      },
    })
  },
})