跳到主要内容
## 增加系统号

简要描述

  • 增加系统号,管理员可以以系统号身份发送通知消息。
  • 系统号无法获取token

请求方式

  • post

请求 URL

  • {API_ADDRESS}/user/add_notification_account
header 名示例值选填类型说明
operationID1646445464564必填string用于全局链路追踪,建议使用时间戳,在每个请求中独立
tokeneyJhbxxxx3Xs必填string管理员 token

请求参数示例

{
"userID": "userID",
"nickName": "notification1",
"faceURL": "url",
"appMangerLevel": 3
}
字段名选填类型说明
userID选填string系统号 ID
nickName必填string系统号昵称
faceURL必填string系统号头像
appMangerLevel必填int系统号类型

成功返回示例

{
"errCode": 0,
"errMsg": "",
"errDlt": "",
"data": {
"userID": "userID",
"faceURL": "url",
"nickName": "notification1",
"appMangerLevel": 3
}
}

成功返回示例的参数说明

参数名类型说明
errCodeint错误码,0 表示成功
errMsgstring错误简要信息,为空
errDlterrDlt错误详细信息,为空
dataobject系统号信息

失败返回示例

{
"errCode": 1001,
"errMsg": "ArgsError",
"errDlt": "nickName is empty: 1001 ArgsError"
}

失败返回示例的参数说明

参数名类型说明
errCodeint错误码,具体查看全局错误码文档
errMsgstring错误简要信息
errDlterrDlt错误详细信息