跳到主要内容

查询账号状态(QueryDeleteStatus)

queryDeleteState 用于通过 DMCS 检查账号注销状态 (账号注销是否在静默期)。

请求参数

参数类型说明备注
openIDstringPlayer Network SDK 用户唯⼀标识
默认为 64-bit 无符号整数的字符串,也可以支持 32-bit
选填
uIDstring自建账号的 UID选填

请求示例

dsrApi.queryDeleteStatus(
{
openID:'136...152',
uID:'339...025',
}
).then((res) => {
console.log(res);
});

返回参数

参数类型说明
retnumber返回代码
0: 请求成功,解析相关返回的字段信息。
!=0: 请求失败,检查 msg 查看详细的退货信息。
msgstring结果说明
created_atint64销号创建的时间戳
status 为 0 时, created_at 为 0
destroyed_atstring实际删除账号时间戳
如果 status 不是 2, destroyed_at 为 0。
seqstring数据流消息序号
statusnumber账号状态
0: 没有记录或账号注销被吊销
1: 冷却期
2: 账号注销已完成
3: 注销账号
4: 账号注销失败
target_destroy_atstring目标账号注销时间戳
如果 status 为 0, target_destroy_at 为 0。

返回示例

{
created_at: "0",
destroyed_at: "0",
msg: "",
ret: 0,
seq: "1640266743-...-0010429252",
status: 0,
target_destroy_at: "0",
}