cURL
curl --request POST \ --url 'https://api.flashcat.cloud/change/list?app_key=' \ --header 'Content-Type: application/json' \ --data ' { "p": 123, "limit": 123, "start_time": 123, "end_time": 123, "filters": [ [ { "key": "title", "oper": "IN", "vals": [ "<string>" ] } ] ], "include_events": true, "integration_ids": [ 123 ], "channel_ids": [ 123 ], "order_by": "start_time", "asc": true, "query": "<string>" } '
{ "error": { "code": "<string>", "message": "<string>" }, "data": { "items": [ { "change_id": "<string>", "data_source_id": 123, "data_source_name": "<string>", "title": "<string>", "change_key": "<string>", "change_status": "Planned", "start_time": 123, "last_time": 123, "end_time": 123, "description": "<string>", "labels": {}, "events": [ { "event_id": "<string>", "integration_id": 123, "title": "<string>", "change_key": "<string>", "change_status": "Planned", "link": "<string>", "event_time": 123, "description": "<string>", "labels": {} } ] } ], "has_next_page": true, "total": 123 } }
页码,从1开始,不传默认为1
分页条数,不传默认为10
start_time和end_time同时不传,则默认查询过去1小时
外层条件,条件之间为OR关系
内层条件
显示 子属性
是否同时返回change_event
变更数据集成id
协作空间id
默认按start_time排序
start_time
last_time
是否升序,默认降序
支持正则表达式,支持筛选标题、描述、change_key
错误信息,仅失败时存在
此页面对您有帮助吗?