查询APP概况
功能介绍
查询租户名下的APP概况:已进行API访问授权的APP个数,未进行API访问授权的APP个数。
URI
HTTP/HTTPS请求方法以及URI如下表所示。
请求方法 | URI |
|---|---|
GET | /v1/{project_id}/apigw/instances/{instance_id}/resources/outline/apps |
URI中的参数说明如下表所示。
名称 | 是否必选 | 类型 | 说明 |
|---|---|---|---|
project_id | 是 | String | 项目ID。可从控制台“我的凭证”中获取region下项目ID,管理员权限可查询。 |
instance_id | 是 | String | 实例ID,可从API网关控制台的专享版实例信息中获取。 |
请求消息
无
响应消息
名称 | 类型 | 说明 |
|---|---|---|
authed_nums | Integer | 已进行API访问授权的APP个数 |
unauthed_nums | Integer | 未进行API访问授权的APP个数 |
响应消息样例:
{
"authed_nums": 1,
"unauthed_nums": 2
} 状态码
状态码 | 说明 |
|---|---|
200 | OK |
400 | Bad Request |
401 | Unauthorized |
403 | Forbidden |
500 | Server Internal Error |

