获取某个订阅的操作记录
接口描述
GET /v1/subscriptions/{subscription_name}/operationRecords
获取某个订阅的操作记录
请求头(Request Header)
请求参数(Request Parameters)
名称 | 位置 | 类型 | 必须 | 描述 |
---|---|---|---|---|
subscription_name | path | string | true | 订阅标识 |
请求体(Request Body)
无
请求示例(Request Example)
curl --request GET \
--url https://management.sensecoreapi.dev/rmh/v1/subscriptions/string/operationRecords \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {access-token}'
响应参数(Response Parameters)
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | OK | ObtainSubscriptionOperationRecordsResponse |
响应示例(Response Example)
200 Response
{
"operation_records": [
{
"username": "string",
"description": "string",
"detail": "string",
"create_time": "2019-08-24T14:15:22Z"
}
]
}
数据结构(Schemas)
ObtainSubscriptionOperationRecordsResponse
名称 | 类型 | 必须 | 限制 | 描述 |
---|---|---|---|---|
operation_records | [SubscriptionOperationRecord] | false | none | 订阅的操作记录 |
SubscriptionOperationRecord
名称 | 类型 | 必须 | 限制 | 描述 |
---|---|---|---|---|
username | string | false | none | 用户名 |
description | string | false | none | 事件描述 |
detail | string | false | none | 详情 |
create_time | string(date-time) | false | none | 创建时间 |