ACCOUNT_LOCKED

Account temporarily locked. Try again in a few minutes.

HTTP status: 423

Why this happens

Your account is temporarily locked, usually after repeated failed sign-ins.

How to recover

Wait the cooldown window (a few minutes), then try again. Use the password reset flow if needed.

Branching on this code

TypeScript
import { ApiError } from "@firecase/sdk";

try {
  await firecase.someCall();
} catch (e) {
  if (e instanceof ApiError && e.code === "ACCOUNT_LOCKED") {
    // recover here
  }
  throw e;
}