Skip to main content
Version: 5.7.0

GetPeerProfiles

Returns a list of all peer profiles for this user.

ServiceOperation
identityGET_PEER_PROFILES

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.IdentityService.GetPeerProfiles(successCallback, failureCallback);
JSON Response
{
"status": 200,
"data": {
"mypeer": {
"profileId": "b7h32751-befd-4a89-b6da-cd55hs3b2a86"
}
}
}