---
title: "Register user"
method: POST
path: "/register"
tags: ["register"]
---

# Register user

`POST /register`

Register a user with email and password.

## Request body

- object — A user who interacts with the Refocus system.
  - `email` string, required — The user's email address.
  - `password` string, password, required — The user's password.
  - `username` string, required — User name provided by the user

## Response `201`

User created.

- UsersResponse — A person or API client who interacts with the Refocus system.
  - `email` string — The user's email address.
  - `id` string
  - `imageUrl` string — Optional thumbnail image.
  - `name` string — First and last name.
  - `fullName` string — The user's full name.
  - `password` string
  - `createdBy` string — TODO
  - `createdAt` string — TODO
  - `updatedAt` string — TODO
  - `apiLinks` HATEOAS[] — Hypertext As The Engine Of Application State.
    - `href` string, required — URL of the related HATEOAS link you can use for subsequent calls.
    - `rel` string, required — Link relation that describes how this link relates to the previous call.
    - `method` string, required — The HTTP method required for the related call.

## Other responses

- `400` — Bad Request
- `403` — Forbidden
- `default` — Error

---

[API](https://skmtc.dev/salesforce/apis/refocus-api.md) · [All operations](https://skmtc.dev/salesforce/apis/refocus-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/salesforce/refocus-api/revisions/42c2153b047e/schema)
