POST
/
v1
/
users
curl --request POST \
  --url https://api.gofermata.com/v1/users \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Joe Smith",
  "email": "joe@gofermata.com",
  "password": "something"
}'
{
  "id": 12,
  "firstName": "Bob",
  "lastName": "Fellow",
  "email": "bob.fellow@gmail.com",
  "dateOfBirth": "1996-08-24",
  "emailVerified": false,
  "createDate": "2020-11-18"
}

Body

application/json

Post the necessary fields for the API to create a new user.

The body is of type object.

Response

200
application/json

User Created

The response is of type object.