CancelDeleteAccount
The cancelDeleteAccount
is used to cancel the account deletion request.
Request Parameter
Parameter | Type | Description | Remark |
---|---|---|---|
openID | string | Player Network SDK unique user ID The default value is 64-bit unsigned integer string, 32-bit string is also supported. | Optional |
uID | string | Custom account UID | Optional |
Request Sample
dsrApi.cancelDeleteAccount(
{
openID:'136...152',
uID:'339...025',
}
).then((res) => {
console.log(res);
});
Response Parameter
Parameter | Type | Description |
---|---|---|
ret | number | Return code 0: Request success, parse related returned field information. !=0: Request failure, check msg for the detailed return message. |
msg | string | Return message |
seq | string | Sequence number of the message in the data stream |
Response Sample
{
msg: "",
ret: 0,
seq: "1640266743-...-0010429252",
}