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

# Verify email

> Enable an account by verifying the email address

## Overview

New accounts are disabled until the email address is verified. Call this
endpoint with the code sent to the user.

## HTTP request

`POST /Agent/Account/VerifyEMail`

## Authentication

No authentication required.

## Request body

```json theme={null}
{
  "eMail": "alice@example.com",
  "code": "123456"
}
```

| Field   | Type   | Required | Description                      |
| ------- | ------ | -------- | -------------------------------- |
| `eMail` | string | yes      | Email address to verify.         |
| `code`  | string | yes      | Verification code sent by email. |

## Response

```json theme={null}
{
  "eMail": "alice@example.com",
  "userName": "alice"
}
```

| Field      | Type   | Description                         |
| ---------- | ------ | ----------------------------------- |
| `eMail`    | string | Verified email address.             |
| `userName` | string | Username associated with the email. |

## Error handling

Invalid codes return an error response.

## Next steps

* Log in to obtain a JWT: [Login](/manual-api-reference/accounts/login)
