Skip to main content
Version: 5.7.0

GetChildProfiles

Returns a list of all child profiles in child Apps.

ServiceOperation
identityGET_CHILD_PROFILES

Method Parameters

ParameterDescription
includeSummaryDataWhether to return the summary friend data along with this call

Usage

http://localhost:3000
bool includeProfileSummaryData = true;
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.GetChildProfiles(includeProfileSummaryData, successCallback, failureCallback);
JSON Response
{
"status": 200,
"data": {
"children": [{
"appId": "123456",
"profileId": "b7h32751-befd-4a89-b6da-cd55hs3b2a86",
"profileName": "Child1",
"summaryFriendData": null
}, {
"appId": "123457",
"profileId": "a17b3432-195b-45hf-b1e7-5f78g3462310",
"profileName": "Child2",
"summaryFriendData": null
}]
}
}