获取个人消息列表
POST
/msg/list请求参数
Header 参数
Content-Type
string
必需
示例值:
application/json
accessToken
string
必需
示例值:
{{accessToken}}
Body 参数application/json
read
boolean
消息是否已读
pageNumber
integer <int32>
页码,默认第一页
pageSize
integer <int32>
可选
每页条数,默认每页10条
category
array [object]
可选
消息动态类型,comment(@我的)/follow(我关注的)/responsible(我负责的)/智能助理automation_station_msg/系统消息sys
示例
{
"read": true,
"pageNumber": 1,
"pageSize": 10,
"category": [
"comment"
]
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSON*/*
OK
数据结构
receiverId
integer <int64>
可选
被指派人的user_id
triggerName
string
可选
该action的触发人名字
createTime
string <date>
创建时间
reminderReceiveId
integer <int64>
可选
接受通知主键id,用于设置消息已读
subject
string
消息主题
receiverName
string
可选
action的接受名,或是人名,或是状态名,或是优先级名
msgId
integer <int64>
消息id
action
string
触发动作
hasRead
string <byte>
可选
是否已读 1 已读 0未读
<= 4 字符
plainReceiverName
string
纯文本
content
string
内容
示例
{
"code": "0",
"data": {
"total": 1,
"list": [
{
"receiverId": 1,
"triggerName": "xxx",
"createTime": 1646301600000,
"reminderReceiveId": 1,
"subject": "xxx",
"receiverName": "xxx",
"msgId": 1,
"action": "at",
"hasRead": 1,
"plainReceiverName": "xxx",
"content": "xxx"
}
]
}
}
最后修改时间: 1 个月前