消息列表接口

URL

POST https://baas.qualink.com/bas/notify/list

请求头

{
    Content-type: application/json
    Authorization: 平台用户身份令牌
}

请求参数

名称 类型 是否必选 描述
page_size int 默认为5
page_number int 默认为1
status string 是否已经被查看,默认为"",查看所有的通知;“1”为已查看;“2”为尚未查看
start_time string 开始时间
end_time string 结束时间

示例:

{
    "page_size": 5,
    "page_number": 1,
    "status": "",
    "start_time": "",
    "end_time": ""
}

返回值

名称 类型 实例值 描述
success Boolean true 查询列表成功
msg string - 查询返回信息
data JSON - 通知数据
total int - 通知总数
pages int - 总页数
list list - 消息列表
notice_id string - 消息id
title string - 标题
content string - 通知内容
create_time datetime - 通知时间
status string - 通知是否已经被查看,"1"已查看,“2”尚未被查看
type string - 通知类型,"0"为多方安全计算相关,“01“为投票通知,“02”为结算通知
addtional_content string - 附加内容,比如投票活动id

示例:

{
    "success": true,
    "msg": "获取成功",
    "data": {
        "total":3,
        "pages":1,
        "page_num":1,
        "page_size":5,
        "list":[
            {
                "create_time": "2020-03-03 08:16:06",
                "type": "01",
                "title": "投票邀请",
                "additional_content": "CALCULATE_2020030308160677746918517744",
                "content": "id为: 20200107161822337869的用户您好!您被受邀参加投票活动!",
                "notice_id": "NOTIFY_2020030308160678082757727",
                "status": "2"
            }
        ]
    }
}

消息详情接口

URL

POST https://baas.qualink.com/bas/notify/detail

请求头

{
    Content-type: application/json
    Authorization: 平台用户身份令牌
}

请求参数

名称 类型 是否必选 描述
notice_id string 消息id

示例:

{
    "notice_id": "NOTIFY_2020030308160678082757727"
}

返回值

名称 类型 实例值 描述
success boolean true 查询是否成功
msg string - 查询返回信息
data JSON - 消息详情信息
notice_id string - 消息id
title string - 标题
content string - 通知内容
create_time datetime - 通知时间
type string - 通知类型,“01”为投票通知
addtional_content string - 附加内容,比如投票活动id

示例:

{
    "success": true,
    "msg": "获取成功",
    "data": {
        "create_time": "2020-03-03 08:16:06",
        "type": "01",
        "title": "投票邀请",
        "additional_content": "CALCULATE_2020030308160677746918517744",
        "content": "id为: 20200107161822337869的用户您好!您被邀请参加投票活动!",
        "status": "1",
        "notice_id": "NOTIFY_2020030308160678082757727"
    }
}