Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Interface

IAccountManager

Syntax

_accountManagerAccountManager.VerifyEmail(int userId, string confirmationCode)

...

[POST] /api/v1/account/complete-email-verification

Parameters

...

  • userId: [Integer] - User id

  • code: [String] - Confirmation code

...

  • Success

  • Invalid

  • Expired

Example

Code Block
languagec#
var status = await _accountManager.VerifyEmail(userid, confirmationCode);

Caveats

Only accessible within the MTOA environment.