rest_auth
v1

post/rest-auth/registration/

Request body

usernamestring required
emailstring email required
password1string required
password2string required

Example request

{
  "password2": "password2",
  "password1": "password1",
  "email": "email",
  "username": "username"
}

Response

usernamestring required
emailstring email required
password1string required
password2string required

Example response

{
  "password2": "password2",
  "password1": "password1",
  "email": "email",
  "username": "username"
}

Changes