Auth
Verify Email Endpoint
Confirm the token from a registration verification email, activating the account and returning an access token for immediate sign-in. Tokens expire 24 hours after registration.
curl -X GET "https://example.com/api/v1/auth/verify-email?token=string"{ "access_token": "string", "token_type": "bearer"}{ "detail": [ { "loc": [ "string" ], "msg": "string", "type": "string" } ]}postRegister Endpoint
Create a local account. Every new account requires activation before it can sign in. If an admin has configured and enabled SMTP (see /admin/email-settings), activation is self-service via an emailed verification link (/auth/verify-email). Otherwise an admin must activate the account manually from Admin -> Users.
postResend Verification Endpoint
Re-send the verification email. Always responds 204 regardless of whether the address exists or is already verified, to avoid leaking account existence.