-
Notifications
You must be signed in to change notification settings - Fork 0
Use Cases Password Sign In
Osvaldo Andrade edited this page Feb 12, 2026
·
3 revisions
Authenticate an existing user with email and password.
- End user
- Client application
- Tikti API
- User exists with active status.
- Password hash is present for the identity.
- User submits email and password in the client app.
- Client calls
POST /v1/accounts/signInWithPassword?key=API_KEY. - Tikti validates credentials and account status.
- Tikti returns idToken and standard auth payload.
- Client may call
POST /v1/accounts/lookup?key=API_KEYto resolve identity metadata.
- Correct credentials produce a valid auth payload.
- Invalid credentials are rejected with stable error semantics.
- Suspended or inactive users cannot authenticate.
- Wrong password -> authentication denied.
- Unknown email -> authentication denied.
- Suspended user -> authentication denied even with correct password.