post https://yoursite.com/api/api/register
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.