OCNORA

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 User
    Create 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 User
    Delete 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 User
    Fetch 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 Users
    List 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 Rows
    Delete 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 Rows
    Insert 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 Function
    Call 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 Rows
    Read 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 URL
    Create 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 Object
    Download 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 Objects
    List one page of objects in a Storage bucket, optionally under a folder prefix and filtered by a search term.
    supabase.storage_list
  • Remove Storage Objects
    Permanently delete one or more objects from a Storage bucket and report which ones the API removed.
    supabase.storage_remove
  • Upload Storage Object
    Upload a file to a Storage bucket, either from inline text or from an upstream node's base64 file payload.
    supabase.storage_upload
  • Update Rows
    Update 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 Rows
    Insert rows, merging into the existing row when a unique constraint collides (PostgREST's Prefer: resolution=merge-duplicates).
    supabase.upsert

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.