0
votes

I have SoftLayer endurance block storage. Although SoftLayer API reference describes that the type of volumeStatus property is string, SoftLayer API returns a different result as follows:

https://api.softlayer.com/rest/v3/SoftLayer_Network_Storage/12345678.json?objectMask=mask[volumeStatus]

{
...
  "volumeStatus": {
    "createDate": "2017-01-26T02:22:39-05:00",
    "message": "Volume Provisioning has completed.",
    "scheduleId": null,
    "typeId": 314,
    "volumeId": 12345678
  }

What is a type of volumeStatus?

1

1 Answers

0
votes

try with this request:

https://api.softlayer.com/rest/v3/SoftLayer_Network_Storage/5805095/getObject?objectMask=volumeStatus

Regards