查询通道巡航路径列表信息。
使用 GET 方式发起请求。
下表仅列出了接口特有的请求参数和部分公共参数。完整的公共参数列表,参考「公共参数」。
字段 | 位置 | 类型 | 必填 | 说明 | 值 |
---|---|---|---|---|---|
Action | Query | String | 是 | 公共参数,OpenAPI 接口名称 | ListCruiseTracks |
Version | Query | String | 是 | 公共参数,OpenAPI 接口版本 | 2021-01-01 |
DeviceNSID | Query | String | 是 | 设备国标 ID | 可通过调用 ListDevices 接口获取 |
ChannelID | Query | String | 是 | 设备通道 ID | 可通过调用 ListStreams 接口获取 |
通用返回参数,请参考 ResponseMetadata 结构体说明。
Result 字段包含查询到的通道巡航路径列表。具体返回参数说明,可参考 GetCruiseTrack 接口的返回参数说明。
GET https://open.volcengineapi.com?Action=ListCruiseTracks &Version=2021-01-01 &DeviceNSID=34020047991180xxxxxx &ChannelID=34020035991320xxxxxx &<公共请求参数>
{ "ResponseMetadata": { "RequestId": "2022072914223101017424420209EE53C9", "Action": "ListCruiseTracks", "Version": "2021-01-01", "Service": "aiotvideo", "Region": "cn-north-1" }, "Result": [ { "DeviceNSID": "34020015991180xxxxxx", "ChannelID": "34020000001310xxxxxx", "TrackID": 1, "TrackList": [ { "PresetID": 1, "PresetName": "预置位1" } ], "StaySeconds": 2, "Speed": 200 }, { "DeviceNSID": "34020015991180xxxxxx", "ChannelID": "34020000001310xxxxxx", "TrackID": 2, "TrackList": [ { "PresetID": 1, "PresetName": "预置位1" } ], "StaySeconds": 2, "Speed": 200 } ] }