Orca Scan

Build a barcode system without code.

Integrate the Orca Scan API with the Supabase API

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

Add or Update Row with Orca Scan API on New Row Added from Supabase API
Supabase + Orca Scan
 
Try it
Add or Update Row with Orca Scan API on New Webhook Event (Instant) from Supabase API
Supabase + Orca Scan
 
Try it
Delete Row with Supabase API on New Row in Orca Scan Sheet from Orca Scan API
Orca Scan + Supabase
 
Try it
Delete Row with Supabase API on New Sheet Created from Orca Scan API
Orca Scan + Supabase
 
Try it
Find Row with Orca Scan API on New Row Added from Supabase API
Supabase + Orca Scan
 
Try it
New Row in Orca Scan Sheet from the Orca Scan API

Emit new event when a new row is created in an Orca Scan sheet. 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 Sheet Created from the Orca Scan API

Emit new event when a new sheet is created in Orca Scan. See the documentation

 
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
Add or Update Row with the Orca Scan API

Adds a new row or updates an existing row in a sheet. See the documentation

 
Try it
Delete Row with the Supabase API

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

 
Try it
Find Row with the Orca Scan API

Locates a row record based on a given barcode. If no barcode is provided, return all rows. See the documentation

 
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 Orca Scan

The Orca Scan API is a gateway to integrate barcode scanning and inventory management capabilities into various workflows. By leveraging the API, you can automate data collection, streamline inventory tracking, and sync your barcode scanning data with other systems. When used on Pipedream, you can merge Orca Scan functionalities with countless other apps, creating custom automation rules, processing data, and managing inventory in real-time. Ideal for inventory management, asset tracking, and data collection automation, the Orca Scan API is a tool that can adapt to a myriad of business needs.

Connect Orca Scan

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: {
    orca_scan: {
      type: "app",
      app: "orca_scan",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.orcascan.com/v1/sheets`,
      headers: {
        Authorization: `Bearer ${this.orca_scan.$auth.api_key}`,
      },
    })
  },
})

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