Skip to main content

User Registration

CRYMBO Connect allows new user creation via a secure registration endpoint.

Endpoint

EndpointMethodPurpose
/v1/auth/registerPOSTCreate a new user account

Registration Flow

  1. User Submits Registration Form

    • Required fields typically include:
      • Email
      • Password (minimum security standards)
      • Personal/business information (optional at first step)
    • Password is securely hashed before storage.
  2. Account Activation

    • Optional: Email verification or manual KYC validation may be required before full activation.
    • Institutions can configure if registration is:
      • Open (public)
      • Invite-only (pre-approved emails)

Security and Validation

  • Email uniqueness is enforced.
  • Password strength requirements enforced at API and UI layers.
  • Registration attempts are rate-limited to prevent abuse.