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"
}

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