获取通知组列表
GET
/api/v1/notification_group/list获取通知组列表
请求参数
Query 参数
name
string
可选
notification_type
string
可选
通知类型:MEMBER-成员通知 EMAIL-邮箱通知SME-短信通知VOICE-语音通知 WEBHOOK-webhook
示例值:
MEMBER
page
integer
页码
page_size
integer
每页数量
status
string
可选
示例代码
返回响应
获取通知组列表成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
可选
data
object (api.GetNotificationGroupListByPageOutSchema)
可选
list
array[object (api.ReadNotificationGroupOutSchema) {10}]
可选
total
integer
可选
message
string
可选
示例
{
"code": 0,
"data": {
"list": [
{
"created_at": "string",
"description": "string",
"id": "string",
"name": "string",
"notification_config": "string",
"notification_type": "string",
"remark": "string",
"status": "string",
"tenant_id": "string",
"updated_at": "string"
}
],
"total": 0
},
"message": "string"
}
最后修改时间: 1 个月前