Skip to main content
The Accounts & onboarding endpoints cover the full lifecycle of a Neuron account — from initial creation through contact verification, account recovery, and transferring an account to another application. These endpoints are typically the starting point for any integration. Most other API groups require an active, verified account with a valid JWT before they can be used.

Endpoints

Typical onboarding flow

  1. Call DomainInfo to display the domain name and description to the user (optional).
  2. Call Create with HMAC-signed credentials to create the account and receive an initial JWT.
  3. Prompt the user to enter the verification code sent to their email address.
  4. Call VerifyEMail to activate the account.
  5. Call Login to get a fresh JWT for ongoing API use.

Authentication notes

  • DomainInfo requires no authentication.
  • Create and CreateWebForm require an HMAC-signed API key — see the Authentication guide.
  • All other endpoints in this group require a JWT bearer token obtained from Create or Login.
  • New accounts are disabled until email verification is complete. Disabled accounts cannot use most other endpoints.