跳转到主要内容
POST
/
rum
/
application
/
infos
批量应用详情
curl --request POST \
  --url 'https://api.flashcat.cloud/rum/application/infos?app_key=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "application_ids": [
    "<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"
        }
      }
    ]
  },
  "error": {
    "code": "<string>",
    "message": "<string>"
  }
}

授权

app_key
string
query
必填

请求头

Content-Type
string

请求体

application/json
application_ids
string[]
必填

应用ID列表

响应

200 - application/json
data
object
必填
error
object

错误信息,仅失败时存在