DetachPlaystation5Identity
Detach the Playstation5 identity from this profile.
Service | Operation |
---|---|
identity | DETACH |
Method Parameters
Parameter | Description |
---|---|
accountId | The playstation5 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 accountId = "somePlaystationNetworkId";
_bc.IdentityService.DetachPlaystation5Identity(
accountId,
true,
SuccessCallback, FailureCallback);
const char * accountId = "somePlaystationNetworkId";
_bc->getIdentityService()->detachPlaystation5Identity(
accountId, 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. |