Skip to main content
Version: 5.7.0

DeleteUser

Completely deletes the user record and all data fully owned by the user. After calling this method, the user will need to re-authenticate and create a new profile.

ServiceOperation
playerStateFULL_PLAYER_RESET

Usage

http://localhost:3000
SuccessCallback successCallback = (response, cbObject) =>
{
Debug.Log(string.Format("Success | {0}", response));
};
FailureCallback failureCallback = (status, code, error, cbObject) =>
{
Debug.Log(string.Format("Failed | {0} {1} {2}", status, code, error));
};

_bc.PlayerStateService.DeleteUser(successCallback, failureCallback);
JSON Response
{
"status" : 200,
"data" : null
}