跳转到主要内容
POST
/
route
/
history
/
list
路由历史列表
curl --request POST \
  --url 'https://api.flashcat.cloud/route/history/list?app_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "integration_id": "<string>",
  "p": 123,
  "limit": 123,
  "asc": true,
  "orderby": "updated_at"
}
'
{
  "error": {},
  "data": {
    "items": [
      {
        "version": 123,
        "updated_by": 123,
        "updated_at": 123,
        "cases": [
          {
            "if": [
              {
                "key": "title",
                "oper": "IN",
                "vals": [
                  "<string>"
                ]
              }
            ],
            "channel_ids": [
              123
            ],
            "fallthrough": true,
            "routing_mode": "standard",
            "name_mapping_label": "<string>"
          }
        ],
        "sections": [
          {
            "name": "<string>",
            "position": 123
          }
        ],
        "default": {
          "channel_ids": [
            123
          ]
        }
      }
    ]
  }
}

授权

app_key
string
query
必填

请求头

Content-Type
string

请求体

application/json
integration_id
string
必填
p
integer

页码,从1开始

limit
integer

分页条数

asc
boolean

是否升序

orderby
enum<string>

排序依据

可用选项:
updated_at

响应

200 - application/json
error
object
data
object