Postman

Postman is the world's leading API platform.

Integrate the Postman API with the Supabase API

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

Create Environment with Postman API on New Row Added from Supabase API
Supabase + Postman
 
Try it
Create Environment with Postman API on New Webhook Event (Instant) from Supabase API
Supabase + Postman
 
Try it
Delete Row with Supabase API on New Monitor Run Completed from Postman API
Postman + Supabase
 
Try it
Insert Row with Supabase API on New Monitor Run Completed from Postman API
Postman + Supabase
 
Try it
Remote Procedure Call with Supabase API on New Monitor Run Completed from Postman API
Postman + Supabase
 
Try it
New Monitor Run Completed from the Postman API

Emit new event when a monitor run is completed. See the documentation

 
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 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
Create Environment with the Postman API

Creates a new environment in Postman. See the documentation

 
Try it
Delete Row with the Supabase API

Deletes row(s) in a database. 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
Run Monitor with the Postman API

Run a specific monitor in Postman. See the documentation

 
Try it
Update Environment Variable with the Postman API

Updates a specific environment variable in Postman. See the documentation

 
Try it

Overview of Postman

The Postman API enables you to automate tasks within your Postman collections, such as running collections, fetching and updating environments, and integrating your API development workflow into your CI/CD pipeline. Using Pipedream, you can harness this functionality to create custom workflows that trigger on various events, process data, and connect with other apps, extending the capabilities of your API testing and development processes.

Connect Postman

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    postman: {
      type: "app",
      app: "postman",
    }
  },
  async run({steps, $}) {
    const data = {
      "auth_token": `=user:NNNNNN`,
    }
    return await axios($, {
      url: `https://api.getpostman.com/me`,
      headers: {
        "X-Api-Key": `${this.postman.$auth.api_key}`,
      },
      data,
    })
  },
})

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}`,
      },
    })
  },
})