Skip to main content
POST
https://api.hfrsite.com
/
auth
/
register
curl -X 'POST' \
  'http://localhost:8080/auth/register' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
  "name": "string",
  "email": "string",
  "password": "string",
  "phone": "string"
}'
Things you can do:
  • Query an admins projects
  • See all of the relevant fields for your projects
name
string
required
email
string
required
This will be a unique name
password
string
required
phone
string
curl -X 'POST' \
  'http://localhost:8080/auth/register' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
  "name": "string",
  "email": "string",
  "password": "string",
  "phone": "string"
}'