You need to enable JavaScript to run this app.
导航
实时规则相关
最近更新时间:2024.07.11 17:54:30首次发布时间:2023.10.08 10:43:28

1. 获取实时规则列表

基本信息

生效版本

1.18

功能描述

获取实时规则列表

接口模块

RealtimeRuleApi

接口名称

GetRealtimeRuleList

请求类型

GET

请求参数

  • Header

名称

数据类型

是否必选

描述

Authorization

String

见《开发前必读》3.3中提到的签名

  • Query 参数

名称

数据类型

是否必选

描述

ApiAction

String

对应“基本信息”中的“接口名称”

ApiVersion

String

版本号: 2023-02-10

tenantsCode

String

租户id

page

Int

分页码,从1开始

pageSize

Int

每页的个数

  • Body

dataDefine的定义

名称

数据类型

描述

items

Item数组

Item 定义参见下文

total

Int

总数

page

Int

分页码,从1开始

pageSize

Int

每页的个数

Item 的定义

名称

数据类型

描述

id

Int

返回码

name

string

名称

tenantCode

string

租户code

subjectId

Int

主体id

createdBy

string

创建者

createdAt

string

创建时间

返回示例:

{
    "data": {
        "items": [
            {
                "id": 1,
                "name": "测试1",
                "tenantCode": "1",
                "subjectId": 1,
                "createdBy": "admin",
                "createdAt": "2023-02-13 17:14:21"
            }
        ],
        "total": 1,
        "page": 1,
        "pageSize": 10
    },
    "code": 0
}