列出不存在标记的VSI,服务器返回{“错误”:“内部错误”,“代码”:“ SoftLayer_Exception_Public”}

时间:2018-10-19 02:41:08

标签: ibm-cloud-infrastructure

1 个答案:

答案 0 :(得分:0)

您得到的错误是因为您在对象过滤器的“值”属性中使用了双括号。

我建议您使用以下示例:

"value":["not_exist_tag"]

或者您可以尝试使用以下rest api调用:

https://[username]:[apiKey]@api.softlayer.com/rest/v3.1/SoftLayer_Account/getVirtualGuests.json?objectFilter={"virtualGuests":{"tagReferences":{"tag":{"name":{"operation":"in","options":[{"name":"data","value":["not_exist_tag"]}]}}}}}

“内部错误”的状态码不应为200,这是一个SoftLayer api问题,已经报告过。