Create a new user

/signup (POST)

Send a POST request to /signup with these credentials

Headers:

content-type: application/json

JSON values

{
  "user" : {
    "username": "akio",
    "email": "moyshik7@gmail.com",
    "name": "Your Name",
    "password": "YourPassword"
  }
}

On success

It'll return a object with response code 200

{
    "code": 200,
    "message": "New user created"
}

Last updated

Was this helpful?