POST
/
api
/
v1
/
users
/
create
Create User
curl --request POST \
  --url https://next-fast-turbo-api.vercel.app/api/v1/users/create \
  --header 'Content-Type: application/json' \
  --data '{
  "forename": "<string>",
  "surname": "<string>",
  "email": "jsmith@example.com"
}'
{
  "id": "<string>",
  "forename": "<string>",
  "surname": "<string>",
  "email": "jsmith@example.com"
}

Body

application/json
forename
string
required
surname
string
required
email
string<email>
required

Response

Successful Response

id
string
required
forename
string
required
surname
string
required
email
string<email>
required