UpdateCustomEmail
public BackendReturnObject UpdateCustomEmail(string emailAddress);
Parameter
Value | Type | Description |
---|---|---|
EmailAddress | string | Email 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