Zoho Catalyst

Catalyst by Zoho is a highly scalable serverless platform that lets developers build and deploy world-class solutions without managing servers. Even better, you pay nothing till you deploy the project to production. Get a free, full-featured sandbox and up to 125 million free invocations

Integrate the Zoho Catalyst API with the Supabase API

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

Detect Objects in Image with Zoho Catalyst API on New Row Added from Supabase API
Supabase + Zoho Catalyst
 
Try it
Detect Objects in Image with Zoho Catalyst API on New Webhook Event (Instant) from Supabase API
Supabase + Zoho Catalyst
 
Try it
Extract Text from Image with Zoho Catalyst API on New Row Added from Supabase API
Supabase + Zoho Catalyst
 
Try it
Extract Text from Image with Zoho Catalyst API on New Webhook Event (Instant) from Supabase API
Supabase + Zoho Catalyst
 
Try it
Perform Face Detection and Analysis with Zoho Catalyst API on New Row Added from Supabase API
Supabase + Zoho Catalyst
 
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
Detect Objects in Image with the Zoho Catalyst API

Detect or recognize objects in an image. See the documentation

 
Try it
Delete Row with the Supabase API

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

 
Try it
Extract Text from Image with the Zoho Catalyst API

Extract text from an image. See the documentation

 
Try it
Insert Row with the Supabase API

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

 
Try it
Perform Face Detection and Analysis with the Zoho Catalyst API

Perform face detection and analysis on an image. See the documentation

 
Try it

Overview of Zoho Catalyst

Zoho Catalyst is a cloud-based backend for building and hosting serverless applications. With its API, you can create, read, update, and delete records in Catalyst Data Store, run Catalyst Functions, manage files in Catalyst File Store, and orchestrate various backend processes. Integrating Zoho Catalyst with Pipedream allows you to seamlessly connect these backend operations with other services and automate workflows. For example, you can trigger a function when you receive an email, process data from webhooks, or sync information between Zoho Catalyst and other platforms.

Connect Zoho Catalyst

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: {
    zoho_catalyst: {
      type: "app",
      app: "zoho_catalyst",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.zoho_catalyst.$auth.base_api_uri}/baas/v1/project`,
      headers: {
        "Authorization": `Zoho-oauthtoken ${this.zoho_catalyst.$auth.oauth_access_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}`,
      },
    })
  },
})