Demo · Mock data only
Project Level · Cloud Functions · Opseer Demo List deployed Cloud Functions with runtime, trigger, memory and timeout; selecting one shows its source. The Invoke and Delete buttons are disabled in the demo — manage them from the Firebase Console.
Functions
65 active
Function List

onUserCreate

nodejs20ACTIVE
Trigger

Auth

Memory

256 MB

Timeout

60s

Region

us-central1

import * as functions from 'firebase-functions/v2'

// onUserCreate · Auth trigger · nodejs20
export const onUserCreate = functions.https.onRequest(async (req, res) => {
  const payload = req.body
  // … handle onUserCreate …
  res.json({ ok: true })
})