跳转到主要内容
POST
/
rum
/
application
/
list
应用列表
curl --request POST \
  --url 'https://api.flashcat.cloud/rum/application/list?app_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "p": 123,
  "limit": 123,
  "asc": true,
  "orderby": "created_at",
  "query": "<string>",
  "team_id": 123,
  "is_my_team": true
}
'
{
  "error": {
    "code": "<string>",
    "message": "<string>"
  },
  "data": {
    "items": [
      {
        "application_id": "<string>",
        "application_name": "<string>",
        "type": "browser",
        "client_token": "<string>",
        "team_id": 123,
        "no_ip": true,
        "no_geo": true,
        "status": "enabled",
        "created_by": 123,
        "updated_by": 123,
        "created_at": 123,
        "updated_at": 123,
        "is_private": true,
        "alerting": {
          "enabled": true,
          "channel_ids": [
            123
          ]
        },
        "tracing": {
          "enabled": true,
          "endpoint": "<string>",
          "open_type": "popup"
        }
      }
    ],
    "has_next_page": true,
    "total": 123
  }
}

授权

app_key
string
query
必填

请求头

Content-Type
string

请求体

application/json
p
integer

页码,从1开始

limit
integer

分页条数

asc
boolean

是否升序

orderby
enum<string>

排序依据

可用选项:
created_at
query
string

查询关键词,检索范围:名称

team_id
integer

团队ID,筛选此团队管理的空间

is_my_team
boolean

我团队的,筛选我所在团队下属的应用

响应

200 - application/json
error
object
data
object