变更列表
POST
https://api.flashcat.cloud/change/list最后修改时间: 1 年前
请求参数
Body 参数application/json
p
integer
页码,从1开始
limit
integer
分页条数
asc
boolean
是否升序
start_time
integer
开始时间戳
end_time
integer
结束时间
filters
array[array (AndFilters) {1}]
过滤条件
外层条件,条件之间为OR关系
object (Filter)
内层条件
include_events
boolean
是否同时返回事件
示例
{
"p": 0,
"limit": 0,
"asc": true,
"start_time": 0,
"end_time": 0,
"filters": [
[
{
"key": "title",
"oper": "IN",
"vals": [
"string"
]
}
]
],
"include_events": true
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
error
object (DutyError)
可选
code
enum<string>
错误码
枚举值:
InvalidParameterInvalidContentTypeUnauthorizedAccessDeniedMethodNotAllowedRequestTooFrequentlyRequestVerifyRequiredDangerousOperationRequestLockedRouteNotFoundBalanceNotEnoughUndonedOrderExistResourceNotFoundInternalErrorReferenceExist
message
string
错误描述
data
object
可选
items
array[object (Change) {12}]
变更条目
has_next_page
boolean
是否有下一页
total
integer
总条目数
示例
未设置
最后修改时间: 1 年前