> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hfrsite.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Registration

> Register for user

Things you can do:

* Query an admins projects
* See all of the relevant fields for your projects

<ParamField body="name" type="string" required />

<ParamField body="email" type="string" required>
  This will be a unique name
</ParamField>

<ParamField body="password" required type="string" />

<ParamField body="phone" type="string" />

<RequestExample>
  ```bash cURL
  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"
  }'
  ```

  ```bash JavaScript
  await axios.post(url, {
    name: "shoaib",
    email: "shoaib@techoneplus.com",
    password: "password",
  })
  ```
</RequestExample>
