
# 查询APP概况
#### 功能介绍
查询租户名下的APP概况：已进行API访问授权的APP个数，未进行API访问授权的APP个数。
#### URI
HTTP/HTTPS请求方法以及URI如下表所示。
表1HTTP/HTTPS请求方法以及URI 
| 请求方法 | URI                                |
|:---|:---|
| GET  | /v1.0/apigw/resources/outline/apps |
   
#### 请求消息
无
#### 响应消息
表2参数说明 
| 名称            | 类型      | 说明               |
|:---|:---|:---|
| authed_nums   | Integer | 已进行API访问授权的APP个数 |
| unauthed_nums | Integer | 未进行API访问授权的APP个数 |
   
响应消息样例：
```
{
"authed_nums": 1,
"unauthed_nums": 2
}
```
#### 状态码
表3返回消息说明 
| 状态码 | 说明                    |
|:---|:---|
| 200 | OK                    |
| 400 | Bad Request           |
| 401 | Unauthorized          |
| 403 | Forbidden             |
| 500 | Server Internal Error |
   
