Skip to main content
Version: 5.8.0

AttachNonLoginUniversalId

Attaches a UniversalId to the current profile with no login capability.

Useful if the app is not using UniversalId for authentication, and you still want to attach a UniversalId to create an app-unique display name for the user.

The call will fail if the UniversalId is already in use, or if the profile already contains a UniversalId.

ServiceOperation
identityATTACH_NONLOGIN_UNIVERSAL

Method Parameters

ParameterDescription
externalIdThe user's user ID

Usage

http://localhost:3000
string externalId = "username";

_bc.IdentityService.AttachNonLoginUniversalId(
externalId,
SuccessCallback, FailureCallback);
JSON Response
{
"status" : 200,
"data" : null
}