SysGetLegacyFlaggedUserData
Retrieves the details about a legacy flagged user.
Service | Operation |
---|---|
globalApp | SYS_GET_LEGACY_FLAGGED_USER_DATA |
Method Parameters
Parameter | Description |
---|---|
profileId | Target user's profile id. |
Usage
http://localhost:3000
- C#
- C++
- Objective-C
- Java
- JavaScript
- Dart
- Cloud Code
- Raw
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
// Cloud Code only. To view example, switch to the Cloud Code tab
var profileId = "the-profile-id";
var globalAppProxy = bridge.getGlobalAppServiceProxy();
var postResult = globalAppProxy.sysGetLegacyFlaggedUserData(profileId);
if (postResult.status == 200) {
// Success!
}
{
"service": "globalApp",
"operation": "SYS_GET_LEGACY_FLAGGED_USER_DATA",
"data":
{
"profileId": "the-profile-id"
}
}
JSON Response
+{
+ "data": {
+ "isActive": true,
+ "notes": "This is a note about the player.",
+ "updatedAt": 1666991622419,
+ "profileId": "f76698c7-bb0c-439a-a46d-44b5f6ca6e15",
+ "playerName": "",
+ "pictureUrl": null,
+ "summaryFriendData": null
+ },
+ "status": 200
+}