Skip to content
TALA
Esc
navigateopen⌘Jpreview

This endpoint is only to be used on the register page

POST/api/auth/register
Request body
requiredapplication/json
fullNamestringrequired
emailstringrequired
passwordstringrequired
confirmPasswordstringrequired
Responses
200OK
any
400Error
any
500Internal Server Error
any
Try it
Server
Bodyapplication/json
Request
curl -X POST "http://localhost:8000/api/auth/register" \
  -H "Content-Type: application/json" \
  -d '{
  "fullName": "string",
  "email": "string",
  "password": "string",
  "confirmPassword": "string"
}'
Response
{
  "message": "Please check your email to verify "
}