Create a user
Time to create a user account, eh?
Body
User to create
Credentials to authenticate a user
- Type: string Format: emailemailrequired
- Type: stringpasswordwrite-onlyrequired
- Type: stringname
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"
}