Skip to main content
Version: 5.11.2

UpdateCustomEmail

public BackendReturnObject UpdateCustomEmail(string emailAddress);

Parameter

ValueTypeDescription
EmailAddressstringEmail address used to find ID and initialize password

Description

The email information used to find custom accounts' IDs and initialize 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.BMember.UpdateCustomEmail("help@thebackend.io");

Asynchronous

Backend.BMember.UpdateCustomEmail("help@thebackend.io", (callback) =>
{
// Post-process
});

SendQueue

SendQueue.Enqueue(Backend.BMember.UpdateCustomEmail, "help@thebackend.io", (callback) =>
{
// Post-process
});

Return cases

Success cases

When the modification is successful
statusCode : 204