You need to enable JavaScript to run this app.
导航
获取应用与配置信息
最近更新时间:2024.06.30 18:36:04首次发布时间:2024.06.30 18:36:04

请求说明

Path:openapi/v1/metadata/apps
Method: POST
Content-type: application/json

请求参数

Body:

参数

类型

是否必选

示例值

描述

app_ids

list

[
1,
2
]

应用id列表

with_config

bool

null

是否返回配置信息

accessed

bool

null

是否接入成功

{
    "app_ids": [
        1,
        2
    ]
}

返回参数

Response:

{
    "code": 200,
    "message": "success",
    "data": {
        "app_infos": [
            {
                "app_id": 1,
                "tea_app_id": 1,
                "app_name": "test1",
                "app_en_name": "test1",
                "app_type": "web",
                "data_center": 1,
                "scale": 1,
                "entrance_type": 4,
                "app_key": "05d9577e67cfd7fc7fceb9df7672573a",
                "status": 1,
                "description": null,
                "configs": null,
                "creator_id": "demo",
                "updator_id": "demo",
                "created_at": 1606985484,
                "updated_at": 1624342801
            },
            {
                "app_id": 2,
                "tea_app_id": 2,
                 ...
            }
        ],
        "total": null
    }
}