Authentication - Verify Register
Email verification and account activation during registration.
📄️ Resend Verification Email
Issue a fresh 24-hour verification token for the user matching the given token and resend the verification email. Responds 401 when the token is invalid or expired.
📄️ Check Verification Token
Validate a registration verification token. When the user has not yet set a password, the response prompts for account setup and includes the email. Responds 401 for an unknown token and 403 when the verification link has expired.
📄️ Complete User Registration
Finalize registration for the user matching the verification token: sets the username and password, marks the account as verified, and updates any pending invitation. Responds 401 for an invalid token and 403 when the link has expired.
📄️ Accept Invitation Verification
Verify an invited user's email using the invitation token and mark the account as verified. When no password is set yet, the response prompts for account setup instead. Responds 401 for an invalid token and 403 when the link has expired.