Skip to main content
POST
/
Agent
/
Account
/
VerifyEMail
Verify email
curl --request POST \
  --url https://{host}/Agent/Account/VerifyEMail \
  --header 'Content-Type: application/json' \
  --data '
{
  "eMail": "alice@example.com",
  "code": "123456"
}
'
{
  "eMail": "alice@example.com",
  "userName": "alice"
}

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.

Overview

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

Authentication

No authentication required.

Body

application/json
eMail
string
required
code
string
required

Response

200 - application/json

Success

eMail
string
required
userName
string
required