对于取消操作,我们取消购买产品的结算项目。
但是对于取消快照空间(不是整个存储空间),当我们以同样的方式尝试时它会返回错误。
如何取消快照空间的结算项目?
答案 0 :(得分:0)
尝试以下休息请求:
https://$user:$apiKey@api.softlayer.com/rest/v3.1/SoftLayer_Billing_Item_Cancellation_Request/createObject.json
Method: Post
{
"parameters":[
{
"complexType":"SoftLayer_Billing_Item_Cancellation_Request",
"accountId":123123,
"notes":"notes test",
"items":[
{
"complexType":"SoftLayer_Billing_Item_Cancellation_Request_Item",
"billingItemId":101726027,
"immediateCancellationFlag":true
}
]
}
]
}
参考文献: