Skip to main content
Version: 5.7.0

DetachBlockchainIdentity

Detaches the blockchain identity to the current profile.

ServiceOperation
identityDETACH_BLOCKCHAIN_IDENTITY

Method Parameters

ParameterDescription
blockchainConfigIdentifies the block chain.

Usage

http://localhost:3000
string blockchainConfig = "config";
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.IdentityService.DetachBlockchainIdentity(blockchainConfig, successCallback, failureCallback);