获取资源统计列表
接口描述
GET /v1/resourceStats
获取资源统计列表
请求头(Request Header)
请求参数(Request Parameters)
无
请求体(Request Body)
无
请求示例(Request Example)
curl --request GET \
--url https://management.sensecoreapi.dev/rmh/v1/resourceStats \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {access-token}'
响应参数(Response Parameters)
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | OK | ObtainResourceStatsResponse |
响应示例(Response Example)
200 Response
{
"resource_stats": [
{
"type": "string",
"stats_dimension": {
"total": 0
},
"display_name": "string",
"url": "string",
"buy_url": "string",
"icon": "string"
}
]
}
数据结构(Schemas)
ObtainResourceStatsResponse
名称 | 类型 | 必须 | 限制 | 描述 |
---|---|---|---|---|
resource_stats | [ResourceStats] | false | none | 资源统计 |
ResourceStats
名称 | 类型 | 必须 | 限制 | 描述 |
---|---|---|---|---|
type | string | false | none | 资源类型 |
stats_dimension | StatsDimension | false | none | 资源统计 |
display_name | string | false | none | 显示名称 |
url | string | false | none | url |
buy_url | string | false | none | 购买路径 |
icon | string | false | none | 图标 |
StatsDimension
名称 | 类型 | 必须 | 限制 | 描述 |
---|---|---|---|---|
total | integer(int32) | false | none | 总记录 |