跳到主要内容

修改用户信息隐私协议,服务条款版本号(ModifyUserAgreement)

modifyUserAgreement API 用于更改服务条款版本和自建账号的隐私策略版本。

请求参数

参数类型描述备注
tokenstringLI PASS 的用户授权令牌必填
openidstringLI PASS 的 UID必填
privacy_policystring隐私协议版本号
不能设置成之前已经设置过的版本,只能升级版本
必填
terms_of_servicestring服务条款版本号
不能设置成之前已经设置过的版本,只能升级版本
必填

请求示例

accountApi.modifyUserAgreement(
{
token: 'xxx',
openid: 'xxx',
privacy_policy: '0.1',
terms_of_service: '0.1',
}
).then((res) => {
console.log(res);
});

返回参数

参数类型描述
retnumber返回代码
0:请求成功
!=0:请求失败,查看 msg 详细结果说明
msgstring结果说明
privacy_policystring用户隐私协议版本
terms_of_servicestring用户服务条款版本
seqstring数据流消息序号

返回示例

{
msg: "Success",
privacy_policy: "0.1",
ret: 0,
seq: "1638240816-0180225310-032531-0000367889",
terms_of_service: "0.1",
}