Create a user

Time to create a user account, eh?

Body

User to create

Credentials to authenticate a user

    • email
      Type: string Format: email
      required
    • password
      Type: string
      write-only
      required
    • name
      Type: string
Responses
Request Example for post/user/signup
curl https://galaxy.scalar.com/user/signup \
  --request POST \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Marc",
  "email": "marc@scalar.com",
  "password": "i-love-scalar"
}'
{
  "id": 1,
  "name": "Marc"
}