Create a new user account with email and password. Requires CAPTCHA verification. User account is created but must verify email before logging in.
curl --request POST \
--url https://api.fluxer.app/v1/auth/register \
--header 'Content-Type: application/json' \
--data '
{
"date_of_birth": "<string>",
"consent": true,
"email": "jsmith@example.com",
"username": "<string>",
"global_name": "<string>",
"password": "<string>",
"invite_code": "<string>"
}
'{
"token": "<string>",
"user_id": "<string>"
}Date of birth in YYYY-MM-DD format
Whether user consents to terms of service
1 - 32Display name shown to other users
8 - 256Guild invite code to join after registration
curl --request POST \
--url https://api.fluxer.app/v1/auth/register \
--header 'Content-Type: application/json' \
--data '
{
"date_of_birth": "<string>",
"consent": true,
"email": "jsmith@example.com",
"username": "<string>",
"global_name": "<string>",
"password": "<string>",
"invite_code": "<string>"
}
'{
"token": "<string>",
"user_id": "<string>"
}