Supabase
Databases & warehousesAPI keycredential probe
Read and write Postgres tables through PostgREST, move Storage objects, and administer Auth users.
OCNORA ships 15 typed Supabase operations. Each node has a schema-driven form, input and output tables beside its settings, and is pre-flighted by Workflow Health before your first real run.
Operations 15
- Create Auth UserCreate an Auth user directly, without the email or SMS round trip, and optionally mark the address or phone as already confirmed.supabase.auth_create_user
- Delete Auth UserDelete an Auth user by id, either permanently or as a soft delete that obfuscates the record and keeps the row.supabase.auth_delete_user
- Get Auth UserFetch one Auth user by id and return the full record, including user_metadata, app_metadata and the linked identities.supabase.auth_get_user
- List Auth UsersList one page of the project's Auth users. Requires the service-role key, which is the only credential the admin endpoints accept.supabase.auth_list_users
- Delete RowsDelete every row a filter matches and return the deleted rows. At least one filter is required, because an unfiltered DELETE would empty the table.supabase.delete
- Insert RowsInsert one row or a batch of rows into a table and return the rows as the database stored them, including generated ids and defaults.supabase.insert
- Call Postgres FunctionCall a Postgres function exposed through PostgREST (POST /rest/v1/rpc/name) and return whatever it produces — a scalar, a row, or a set of rows.supabase.rpc
- Select RowsRead rows from a table or view through PostgREST, narrowing them with structured filters, a column list, an ordering and limit/offset paging.supabase.select
- Create Signed URLCreate a time-limited signed URL for a private Storage object so it can be emailed or handed to a browser without the project's API key.supabase.storage_create_signed_url
- Download Storage ObjectDownload an object from a Storage bucket as a base64 file payload that an upload or parse node downstream can consume directly.supabase.storage_download
- List Storage ObjectsList one page of objects in a Storage bucket, optionally under a folder prefix and filtered by a search term.supabase.storage_list
- Remove Storage ObjectsPermanently delete one or more objects from a Storage bucket and report which ones the API removed.supabase.storage_remove
- Upload Storage ObjectUpload a file to a Storage bucket, either from inline text or from an upstream node's base64 file payload.supabase.storage_upload
- Update RowsUpdate every row a filter matches and return the updated rows. At least one filter is required, because PostgREST accepts an unfiltered PATCH and would rewrite the whole table.supabase.update
- Upsert RowsInsert rows, merging into the existing row when a unique constraint collides (PostgREST's Prefer: resolution=merge-duplicates).supabase.upsert
More in Databases & warehouses
Run your first Supabase workflow today.
Create a free workspace, add the connection, pick a template or describe the workflow to Build with AI. Workflow Health checks it before it runs.