October 9, 2017


Spare Pool Servers

How to interact with the Spare Pool

Operation: GET

Method: SoftLayer_Hardware_Server::sparepool()

Example CURL:

curl -su userid:api_key https://api.softlayer.com/rest/v3/SoftLayer_Hardware_Server/<hardware_id>/sparepool/add

curl -su userid:api_key  "https://api.softlayer.com/rest/v3/SoftLayer_Hardware_Server/<hardware_id>/sparePool/activate"

Will return True if the action was successful, or throw an exception otherwise

Exceptions:

This server (hostname.domain.name) is not in a status that allows it to be added to spare pool.
This server (hostname.domain.name) is not in a status that allows it to be removed from spare pool.

The server is likely already in a spare pool.

View Spare Pool Servers

Filtering by hardwareStatus->status doesn’t work, you will need to filter by the status id only.

Status id 23 is SPARE_POOL Status id 5 is ACTIVE

curl -su userid:api_key 'https://api.softlayer.com/rest/v3/SoftLayer_Account/getHardware?objectMask=mask[id,hostname,hardwareStatus[status,id]]&objectFilter={"hardware":{"hardwareStatus":{"id":{"operation":23}}}}'

Feedback?

If this article contains any error, or leaves any of your questions unanswered, please help us out by opening up a github issue.
Open an issue