CBC Dev
POST/v1/auth/register

Member Registration

Create a new member account within the CBC ecosystem. This endpoint automatically handles profile creation and links it to the new identity.

Authentication Required

Requires a valid client_id and client_secret in the headers if connecting from a server-side application.

Request BodyJSON

emailRequired · String

The user's email address. Must be unique across the system.

passwordRequired · String

Minimum 8 characters. Should include letters, numbers and symbols.

fullNameRequired · String

The user's full display name (e.g., "John Doe").

Error States

400

AUTH_EMAIL_EXISTS

The email address is already registered.

400

VALIDATION_ERROR

Check request body field constraints.

View all error codes