Hanzo Docs

Create a user

POST
/user/signup

Time to create a user account, eh?

User to create

name?string
email*string
Formatemail
password*string

Response Body

curl -X POST "https://galaxy.scalar.com/user/signup" \  -H "Content-Type: application/json" \  -d '{    "name": "Marc",    "email": "[email protected]",    "password": "i-love-scalar"  }'
{
  "id": 1,
  "name": "Marc"
}