获取订阅列表
POST
/openapi/v1/event/list返回所有订阅的事件。
请求参数
Body 参数application/json
source_id
string
订阅的对象ID
source_type
string
订阅的对象类型
目前仅支持“table”表格
limit
integer
每页条数
默认 20 条,最大 100 条
offset
integer
分页偏移量
默认为 0
示例
{
"source_id": "{{TABLE_ID}}",
"source_type": "table"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
object {0}
示例成功示例
{
"code": 0,
"message": "success",
"data": {
"total": 1,
"subscribes": [
{
"source_id": "2100000014303340",
"source_type": "table",
"events": [
"item.update",
"item.create"
],
"state": 1
}
]
},
"meta": {
"trace_id": "1652588571980470"
}
}
最后修改时间: 2 年前