查询账号状态(QueryDeleteStatus)
queryDeleteState
用于通过 DMCS 检查账号注销状态 (账号注销是否在静默期)。
请求参数
参数 | 类型 | 说明 | 备注 |
---|---|---|---|
openID | string | Player Network SDK 用户唯⼀标识 默认为 64-bit 无符号整数的字符串,也可以支持 32-bit | 选填 |
uID | string | 自建账号的 UID | 选填 |
请求示例
dsrApi.queryDeleteStatus(
{
openID:'136...152',
uID:'339...025',
}
).then((res) => {
console.log(res);
});
返回参数
参数 | 类型 | 说明 |
---|---|---|
ret | number | 返回代码 0: 请求成功,解析相关返回的字段信息。 !=0: 请求失败,检查 msg 查看详细的退货信息。 |
msg | string | 结果说明 |
created_at | int64 | 销号创建的时间戳 status 为 0 时, created_at 为 0 |
destroyed_at | string | 实际删除账号时间戳 如果 status 不是 2, destroyed_at 为 0。 |
seq | string | 数据流消息序号 |
status | number | 账号状态 0: 没有记录或账号注销被吊销 1: 冷却期 2: 账号注销已完成 3: 注销账号 4: 账号注销失败 |
target_destroy_at | string | 目标账号注销时间戳 如果 status 为 0, target_destroy_at 为 0。 |
返回示例
{
created_at: "0",
destroyed_at: "0",
msg: "",
ret: 0,
seq: "1640266743-...-0010429252",
status: 0,
target_destroy_at: "0",
}