Registers a new user with email and password.
POST
/api/auth/v1/login_anonymous
const url = 'https://example.com/api/auth/v1/login_anonymous';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"redirect_uri":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/auth/v1/login_anonymous \ --header 'Content-Type: application/json' \ --data '{ "redirect_uri": "example" }'Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”redirect_uri
string | null
Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
object
redirect_uri
string | null
Examplegenerated
{ "redirect_uri": "example"}Responses
Section titled “Responses”Form fail OR success, new user registered, or user already exists.
Failed to send verification Email.