调用该接口查询视频云存储套餐列表。

路径 /vision/customer/cloudstorage/commodity/query
版本号 1.0.4
协议 HTTP,HTTPS
请求方法 POST
是否需要用户身份鉴权 可选
超时时间 3000

请求参数

返回数据

名称 类型 示例值 描述
code Int

接口返回码。200表示成功。

message String

调用失败时,返回的出错信息。

localizedMsg String

本地语言的错误消息。

data JSON

响应的结果。

commodityName String

云存储套餐名称。

commodityCode String

云存储套餐代号。

specification String

云存储套餐规格。

recordType Int

云存录像类型。1(表示连续型);2(表示事件型)。

price String

云存储套餐价格,单位:元。

lifecycle Int

存储周期,单位:天。

months Int

服务周期,单位:月。

示例

请求示例

{
	"id": "1509086454180",
	"version": "1.0",
	"request":{
		"apiVer": "1.0.4"
	},
	"params":{}
}

正常返回示例

JSON 格式

{
    "id": "4de2c367-c1db-417c-aa15-8c585e595d92",
    "code": 200,
    "message": null,
    "localizedMsg": null,
    "data": [
        {
            "commodityName": "",
            "commodityCode": "",
            "specification": "",
            "recordType": 2,
            "price": "1.0",
            "lifecycle": 7,
            "months": 1
        }
    ]
}

异常返回示例

JSON 格式

{
    "id": "37f7e5fa-d6a5-4efe-8abf-5bf23dca6284",
    "code": 403,
    "message": "request forbidden.",
    "localizedMsg": "请求被禁止",
    "data": null
}