UpdateCustomEmail
public BackendReturnObject UpdateCustomEmail(string emailAddress);
Parameters
Value | Type | Description |
---|---|---|
EmailAddress | string | Email address used to find ID and reset password |
Description
The email information used to find Multicharacter accounts' IDs and reset their passwords can be registered to the user information.
This email is managed separately from the email registered by a federation user.
Example
Synchronous
Backend.MultiCharacter.Account.UpdateCustomEmail("help@thebackend.io");
Asynchronous
Backend.MultiCharacter.Account.UpdateCustomEmail("help@thebackend.io", (callback) =>
{
// Post-process
});
SendQueue
SendQueue.Enqueue(Backend.MultiCharacter.Account.UpdateCustomEmail, "help@thebackend.io", (callback) =>
{
// Post-process
});
ReturnCase
Success cases
When the modification succeeds
statusCode : 204