API Reference
Log in to see full request history

The Bearer token is the access token requested in Request Access Token page.

A success answer will return a "user_id" if account does not requires email verification or a "token" if it requires email verification.

Success answer without account activation

The success answer will return the User ID (user_id) like this example:

{ status: 'success', activation: false, user_id: 10 }

Success answer with account activation

This success answer will return a token and a verification code will be sent to email address, both must be used in the Account Activation request.

{ status: 'success', token: 'activationToken....' }

📘

Activation token will be valid for 60 minutes.

Form Data
string
required

User's Full Name .

string
required

User's email address.

string
required

Username, it may only contain alpha-numeric characters, underscores, and dashes.

string
required

User's password, it must be at least 6 characters in length.

string

Optional. Username of referrer (upline).

string

Optional. Track name used from your Campaign Tracker

Headers
string
required
Defaults to Bearer {access_token}

Ex: Bearer {access_token} should be replaced with the access token.

Responses

Language
Click Try It! to start a request and see the response here! Or choose an example:
application/json