Supabase

Supabase

Connect to Supabase projects using host and Service Role secret for server-side operations.

Triggers & Actions

Use Supabase as a trigger to kick off a workflow, or use it as an action to do something automatically in your workflow.

Triggers

No triggers available

Actions

  • Select Data

    Perform a SELECT query on a table or view. Returns data with optional filtering, counting, and column selection.

  • Insert Data

    Perform an INSERT into the table or view. Pass an object to insert a single row or an array to insert multiple rows.

  • Update Data

    Perform an UPDATE on the table or view. Must be combined with filters to target specific rows.

  • Upsert Data

    Perform an UPSERT on the table or view. Insert if not exists, update if exists based on conflict columns.

  • Delete Data

    Perform a DELETE on the table or view. Must be combined with filters to target specific rows for safety.

  • Call Postgres Function

    Perform a function call to execute Postgres functions as Remote Procedure Calls (RPCs).

  • Create Bucket

    Creates a new Storage bucket with specified configuration options.

  • Get Bucket

    Retrieves the details of an existing Storage bucket.

  • List Buckets

    Retrieves the details of all Storage buckets within an existing project.

  • Update Bucket

    Updates a Storage bucket with new configuration options.

  • Delete Bucket

    Deletes an existing bucket. A bucket can't be deleted with existing objects inside it. You must first empty the bucket.

  • Empty Bucket

    Removes all objects inside a single bucket. This action cannot be undone.