获取通知历史列表
GET
/api/v1/notification_history/list获取通知历史列表
请求参数
Query 参数
notification_type
string
通知类型
示例值:
MEMBER
page
integer
页码
page_size
integer
每页数量
send_target
string
发送目标
send_time_start
string
发送时间起始
示例值:
2006-01-02 15:04:05
send_time_stop
string
发送时间终止
示例值:
2006-01-02 15:04:05
示例代码
返回响应
获取通知历史列表成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
可选
data
object (api.GetNotificationHistoryListByPageOutSchema)
可选
list
array[object (api.ReadNotificationHistorySchema) {8}]
可选
total
integer
可选
message
string
可选
示例
{
"code": 0,
"data": {
"list": [
{
"id": "string",
"notification_type": "string",
"remark": "string",
"send_content": "string",
"send_result": "string",
"send_target": "string",
"send_time": "string",
"tenant_id": "string"
}
],
"total": 0
},
"message": "string"
}
最后修改时间: a month ago