Skip to main content

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.

HTTP request

POST /Agent/Account/VerifyEMail

Authentication

No authentication required.

Request body

{
  "eMail": "alice@example.com",
  "code": "123456"
}
FieldTypeRequiredDescription
eMailstringyesEmail address to verify.
codestringyesVerification code sent by email.

Response

{
  "eMail": "alice@example.com",
  "userName": "alice"
}
FieldTypeDescription
eMailstringVerified email address.
userNamestringUsername associated with the email.

Error handling

Invalid codes return an error response.

Next steps

  • Log in to obtain a JWT: Login