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 integrate
with
See 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
- Table
- Created Column
- Filter Column
- Filter Value
New or Updated Row
Triggers when a row in a table is created or updated.
- 4
parameter
s
- Table
- Updated Column
- Filter Column
- Filter Value
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
- Table
- Additional Fields
Update Row
Updates row(s) in a table that match a given column/value filter.
- 4
parameter
s
- Table
- Match Column
- Match Value
- Additional Fields
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
- Table
- Conflict Column
- Additional Fields
Delete Row
Deletes a row from a table matching a column value.
- 3
parameter
s
- Table
- Match Column
- Match Value
Find Row
Finds a single row in a table matching a column value.
- 5
parameter
s
- Table
- Column
- Operator
- Value
- Select Columns
Find Many Rows
Finds multiple rows in a table, with optional filtering and ordering.
- 7
parameter
s
- Table
- Filter Column
- Operator
- Filter Value
- Order By Column
- Order Direction
- Select Columns
Call Postgres Function
Calls a Postgres function (RPC) exposed by your Supabase project.
- 2
parameter
s
- Function
- Arguments
Create User
Creates a new user in Supabase Auth.
- 7
parameter
s
- Email
- Phone
- Password
- Email Confirm
- Phone Confirm
- User Metadata
- App Metadata
Update User
Updates an existing Supabase Auth user's attributes.
- 8
parameter
s
- User
- Email
- Phone
- Password
- Email Confirm
- Ban Duration
- User Metadata
- App Metadata
Delete User
Deletes a user from Supabase Auth.
Find User
Finds a single Supabase Auth user by email or user ID.
- 2
parameter
s
- Search By
- Value
Invite User
Sends an invite email to a new user, creating them in Supabase Auth.
- 2
parameter
s
- Email
- User Metadata
Upload File
Uploads a file to a Supabase Storage bucket.
- 5
parameter
s
- Bucket
- Path
- File
- Content Type
- Upsert
Create Signed URL
Creates a temporary signed URL for downloading a file from Supabase Storage.
- 3
parameter
s
- Bucket
- Path
- Expires In (seconds)
List Files
Lists files in a Supabase Storage bucket, with optional prefix and search filtering.
- 3
parameter
s
- Bucket
- Prefix
- Search
Delete File
Deletes a file from a Supabase Storage bucket.
- 2
parameter
s
- Bucket
- Path
Make HTTP Request
Make an HTTP request to any URL with full control over method, headers, and body.