Automate Supabase for free on Stepper

Supabase is an open-source Postgres backend that gives every project an instant REST API, authentication, and file storage.

I want to integratewithSee how to connect Supabase to ...

Triggers available for Supabase on Stepper

New Row

Triggers when a new row is created in a table.

  • 4 parameter s

New or Updated Row

Triggers when a row in a table is created or updated.

  • 4 parameter s

New User

Triggers when a new user signs up.

Actions available for Supabase on Stepper

Create Row

Creates a new row in a table.

  • 2 parameter s

Update Row

Updates row(s) in a table that match a given column/value filter.

  • 4 parameter s

Upsert Row

Inserts a new row into a table, or updates it in place if a row with a matching unique column (or primary key) already exists.

  • 3 parameter s

Delete Row

Deletes a row from a table matching a column value.

  • 3 parameter s

Find Row

Finds a single row in a table matching a column value.

  • 5 parameter s

Find Many Rows

Finds multiple rows in a table, with optional filtering and ordering.

  • 7 parameter s

Call Postgres Function

Calls a Postgres function (RPC) exposed by your Supabase project.

  • 2 parameter s

Create User

Creates a new user in Supabase Auth.

  • 7 parameter s

Update User

Updates an existing Supabase Auth user's attributes.

  • 8 parameter s

Delete User

Deletes a user from Supabase Auth.

  • 1 parameter s

Find User

Finds a single Supabase Auth user by email or user ID.

  • 2 parameter s

Invite User

Sends an invite email to a new user, creating them in Supabase Auth.

  • 2 parameter s

Upload File

Uploads a file to a Supabase Storage bucket.

  • 5 parameter s

Create Signed URL

Creates a temporary signed URL for downloading a file from Supabase Storage.

  • 3 parameter s

List Files

Lists files in a Supabase Storage bucket, with optional prefix and search filtering.

  • 3 parameter s

Delete File

Deletes a file from a Supabase Storage bucket.

  • 2 parameter s

Make HTTP Request

Make an HTTP request to any URL with full control over method, headers, and body.