查询退款订单的金额详情
功能介绍
客户在伙伴销售平台查询某次退订订单或者降配订单的退款金额来自哪些资源和对应订单。
注意事项:
- 该接口可以使用客户AK/SK或者Token调用。
- 可以在调用完“退订包年/包月资源(旧)”接口生成退订订单ID后,调用该接口查询退订订单对应的金额所属资源和订单。例如,调用“退订包年/包月资源(旧)”接口退订资源及其已续费周期后,您可以调用本小节的接口查询到退订金额归属的原开通订单ID和原续费订单ID。
- 2018年5月份之后退订的订单才能查询到归属的原订单ID。
该接口即将下线,“查询退款订单的金额详情”接口请参考查询退款订单的金额详情。
URI
GET /v1.0/{domain_id}/common/order-mgr/orders/refund-order
参数说明请参见下表。
参数 |
是否必选 |
取值范围 |
描述 |
---|---|---|---|
domain_id |
是 |
最大长度:64 |
|
参数 |
是否必选 |
参数类型 |
取值范围 |
描述 |
---|---|---|---|---|
order_id |
是 |
String |
最大长度:64 |
退订订单或者降配订单ID。 |
请求消息
请求参数
无。
请求示例
GET https://bss-intl.myhuaweicloud.com/v1.0/{domain_id}/common/order-mgr/orders/refund-order?order_id=CS1*****GT HTTP/1.1 Content-Type: application/json X-Auth-Token:MIIPAgYJKoZIhvcNAQcCo...ggg1BBIINPXsidG9rZ
响应消息
响应参数
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
error_code |
是 |
String |
状态码。 具体请参见状态码。 |
error_msg |
是 |
String |
错误描述信息。 |
total_count |
否 |
Integer |
查询总数。 |
resource_info_list |
否 |
List<ResourceInfo> |
资源信息列表。 具体请参见表3。 |
参数 |
是否必选 |
参数类型 |
描述 |
---|---|---|---|
id |
是 |
String |
该记录的ID。 |
resource_id |
否 |
String |
资源ID。 如果资源没有ID号,该字段为空。 该字段先预留,目前暂不返回。 |
amount |
是 |
BigDecimal |
金额。
|
measure_id |
是 |
String |
度量单位。
|
customer_id |
是 |
String |
客户ID。 |
resourceType |
是 |
String |
资源类型编码,例如ECS的VM为“hws.resource.type.vm”。您可以调用查询资源类型列表接口获取。 |
cloudServiceType |
是 |
String |
云服务类型编码,例如OBS的云服务类型编码为“hws.service.type.obs”。您可以调用查询云服务类型列表接口获取。 |
regionCode |
是 |
String |
云服务区编码,例如:“ap-southeast-1”。具体请参见地区和终端节点对应云服务的“区域”列的值。 |
preOrderId |
否 |
String |
退订金额、已消费金额或收取退订手续费对应的原订单ID。 |
响应示例
HTTP/1.1 200 OK Content-Type: application/json;charset=UTF-8 Content-Length: length Date: response time { "error_code": "CBC.0000", "error_msg": "success", "total_count": 3, "resource_info_list": [ { "id": "0b8**c**f3", "amount": -288, "resourceType": "hws.resource.type.volume", "cloudServiceType": "hws.service.type.ebs", "regionCode": "cn-north-1", "preOrderId": "CS1806201614MS037", "resource_id": null, "measure_id": "3", "customer_id": "f8*****231d" }, { "id": "2ba*****2a9", "amount": 28, "resourceType": "hws.resource.type.volume", "cloudServiceType": "hws.service.type.ebs", "regionCode": "cn-north-1", "preOrderId": "CS18062016100U54J", "resource_id": null, "measure_id": "3", "customer_id": "f80*****31d" }, { "id": "abe3*****5312", "amount": -260, "resourceType": "hws.resource.type.volume", "cloudServiceType": "hws.service.type.ebs", "regionCode": "cn-north-1", "preOrderId": "CS18062016100U54J", "resource_id": null, "measure_id": "3", "customer_id": "f80*****31d" } ] }