DetachPlaystationNetworkIdentity
Detach the PlaystationNetwork identity from this profile.
Service | Operation |
---|---|
identity | DETACH |
Method Parameters
Parameter | Description |
---|---|
playstationNetworkId | The playstationNetwork id of the user |
continueAnon | Proceed even if the profile will revert to anonymous? |
Usage
http://localhost:3000
- C#
- C++
- Objective-C
- Java
- JavaScript
- Dart
- Cloud Code
- Raw
string playstationNetworkId = "somePlaystationNetworkId";
_bc.IdentityService.DetachPlaystationNetworkIdentity(
playstationNetworkId,
true,
SuccessCallback, FailureCallback);
const char * playstationNetworkId = "somePlaystationNetworkId";
_bc->getIdentityService()->detachPlaystationNetworkIdentity(
playstationNetworkId, false, this);
// N/A
// N/A
// N/A
// N/A
// N/A
// N/A
JSON Response
{
"status": 200,
"data": null
}
Common Error Code
Status Codes
Code | Name | Description |
---|---|---|
40210 | DOWNGRADING_TO_ANONYMOUS_ERROR | Occurs when detaching the last non-anonymous identity from an account with continueAnon set to false. |