Register
POST/api/auth/register/
Create an account with email and password.
Body Parameters
email: string
formatemail
minLength1
password: string
minLength8
maxLength128
password_confirm: string
minLength8
maxLength128
Returns
access: string
refresh: string
Register
curl https://api.overmindlab.ai/api/auth/register/ \
-H 'Content-Type: application/json' \
-d '{
"email": "dev@stainless.com",
"password": "xxxxxxxx",
"password_confirm": "xxxxxxxx"
}'{
"access": "access",
"refresh": "refresh",
"user": {
"id": 0,
"email": "dev@stainless.com",
"email_verified": true
}
}Returns Examples
{
"access": "access",
"refresh": "refresh",
"user": {
"id": 0,
"email": "dev@stainless.com",
"email_verified": true
}
}