查询已创建的智能应用列表。
使用 GET 方式发起请求。
下表仅列出了接口特有的请求参数和部分公共参数。完整的公共参数列表,参考「公共参数」。
字段 | 位置 | 类型 | 必填 | 说明 | 值 |
---|---|---|---|---|---|
Action | Query | String | 是 | 公共参数,OpenAPI 接口名称 | ListAIApp |
Version | Query | String | 是 | 公共参数,OpenAPI 接口版本 | 2021-01-01 |
Type | Query | String | 是 | 筛选条件,布控目标类型 | 可选枚举值:
|
Order | Query | Integer | 否 | 查询结果排序方式 | 可选枚举值:
|
通用返回参数,请参考 ResponseMetadata 结构体说明。
Result 字段包含以下参数:
字段 | 类型 | 说明 |
---|---|---|
AIApps | Array of objects | 查询到的车辆布控应用列表,参考以下 List<AIApps> 结构说明 |
List<AIApps>
结构说明
字段 | 类型 | 说明 |
---|---|---|
AppID | String | 应用 ID |
AppName | String | 应用名称 |
BindSpaces | String[] | 关联空间 ID 列表 |
AppLibs | String[] | 布控目标 ID 列表 |
ConfidenceThreshold | Float | 置信阈值 |
FrameInterval | Integer | 截帧间隔,单位:毫秒 |
status | String | 应用的状态:
|
EnableTimes | Array of objects | 应用的生效时间:
|
ImageTTL | Integer | 图片存储周期,单位:天 |
CallbackUrl | String | 回调地址 |
GET https://open.volcengineapi.com?Action=ListAIApp &Version=2021-01-01 &Type=Vehicle &Order=1 &<公共请求参数>
{ "ResponseMetadata": { "RequestId": "202201271515320102120352271A00A77A", "Action": "ListAIApp", "Version": "2021-01-01", "Service": "aiotvideo", "Region": "cn-north-1" }, "Result": { "PageNumber": 1, "PageSize": 20, "TotalCount": 2, "AIApps": [ { "AppID": "eadc17d0-37de-4282-9d5b-11b57f0ae0c7", "AppName": "rtsp", "BindSpaces": [ "1d02923f-d5ce-40f2-ac90-fea4a55e04f5" ], "AppLibs": [ "0-1642754961198599-1579" ], "FrameInterval": 1000, "EnableTimes": [ { "EnableFrom": "00:00:00", "EnableTo": "23:59:59" } ], "ImageTTL": 7456789, "ConfidenceThreshold": 20, "CallbackUrl": "", "Status": "running" }, { "AppID": "8a6edfa6-4905-4bc9-9aef-dd527bff17ae", "AppName": "rtmp", "BindSpaces": [ "a0c97103-f019-42b4-b60a-f0976744d546" ], "AppLibs": [ "0-1642754961198599-1579" ], "FrameInterval": 1000, "EnableTimes": [ { "EnableFrom": "00:00:00", "EnableTo": "23:59:59" } ], "ImageTTL": 7, "ConfidenceThreshold": 20, "CallbackUrl": "", "Status": "running" } ] } }