OPN (formerly Omise)

Integrate the OPN (formerly Omise) API with the Supabase API

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

Create a New Charge with OPN (formerly Omise) API on New Row Added from Supabase API
Supabase + OPN (formerly Omise)
 
Try it
Create a New Charge with OPN (formerly Omise) API on New Webhook Event (Instant) from Supabase API
Supabase + OPN (formerly Omise)
 
Try it
Create Customer with OPN (formerly Omise) API on New Row Added from Supabase API
Supabase + OPN (formerly Omise)
 
Try it
Create Customer with OPN (formerly Omise) API on New Webhook Event (Instant) from Supabase API
Supabase + OPN (formerly Omise)
 
Try it
Delete Row with Supabase API on New Charge Refunded from OPN (formerly Omise) API
OPN (formerly Omise) + Supabase
 
Try it
New Charge Refunded from the OPN (formerly Omise) API

Emit new event for each refunded charge through the OPN platform.

 
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 Payment Received from the OPN (formerly Omise) API

Emit new event for each payment received through the OPN platform.

 
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 a New Charge with the OPN (formerly Omise) API

Create a new charge for a specific customer and amount through the OPN platform. See the documentation

 
Try it
Delete Row with the Supabase API

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

 
Try it
Create Customer with the OPN (formerly Omise) API

Registers a new customer in the OPN platform. See the documentation

 
Try it
Insert Row with the Supabase API

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

 
Try it
Update Customer with the OPN (formerly Omise) API

Update a customer's information and payment details in the OPN system. See the documentation

 
Try it

Overview of OPN (formerly Omise)

The OPN API, previously known as Omise, provides a powerful suite of features for handling online payments, from processing transactions to managing payment methods. With Pipedream's integration capabilities, you can automate various aspects of payment operations, link payment events to other services, and streamline financial workflows without the need for extensive coding.

Connect OPN (formerly Omise)

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: {
    omise: {
      type: "app",
      app: "omise",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.omise.co/account`,
      auth: {
        username: `${this.omise.$auth.secret_key}`,
        password: ``,
      },
    })
  },
})

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