Skip to content

Registers a new user with email and password.

POST
/api/auth/v1/register
curl --request POST \
--url https://example.com/api/auth/v1/register \
--header 'Content-Type: application/json' \
--data '{ "email": "example", "password": "example", "password_repeat": "example", "redirect_uri": "example" }'
redirect_uri
string | null
Media type application/json
object
email
required
string
password
required
string
password_repeat
required
string
redirect_uri
string | null
Example generated
{
"email": "example",
"password": "example",
"password_repeat": "example",
"redirect_uri": "example"
}

Form fail OR success, new user registered, or user already exists.

Failed to send verification Email.