# Register a user

Endpoint: PUT /me/register
Version: 1.0.445.36017
Security: OAuth2

## Query parameters:

  - `anonUserToken` (string, required)
    Anon user token of the user.

## Request fields (application/json):

  - `Username` (string, required)
    Must be unique across all organizations.

  - `FirstName` (string, required)

  - `LastName` (string, required)

  - `Email` (string, required)

  - `Active` (boolean, required)
    If false, authentication is prohibited.

  - `ID` (string)

  - `Password` (string)

  - `Phone` (string)

  - `TermsAccepted` (string)
    Example: "2018-01-01T00:00:00-06:00"

  - `xp` (object)
    Example: {}

## Response 200 fields (application/json):

  - `access_token` (string)

## Response 4XX fields (application/json):

  - `StatusCode` (integer)
    Example: "404"

  - `ErrorCode` (string)
    Example: "NotFoundError"

  - `Message` (string)
    Example: "Object not found"

  - `Data` (object)
    Example: {"ObjectType":"","ObjectID":""}


