ServerActionResize
From Hostway API Documentation
Revision as of 20:03, 23 April 2012 by Administrator (Talk | contribs)
The resize function changes the Flavor of a server.
POST /servers/id/action
Contents |
Parameters
- id
- The unique identifier of the image to be retrieved. Note see warnings in Hypermedia.
JSON
{ "resize" : { "flavor": { "id":"{flavor_id}" } } }
- id - string
- The id is of the flavor to be used.
Response Codes
- Success
- HTTP/1.1 202 Accepted
- The request is accepted for processing.
- Failure
- HTTP/1.1 200 OK Unauthorized - This server could not verify that you are authorized to access the document you requested. Either you supplied the wrong credentials (e.g., bad password), or your browser does not understand how to supply the credentials required.
Examples
Successfully resize a server
- POST http(s)://{api_server}/167/action
Request Headers:
Content-Type:application/json Charset=UTF-8 Authorization:Base64-encoded username & password string
Request Body:
{ "resize" : { "flavor": { "id":"3" } } }
Response Code:
HTTP/1.1 202 Accepted
Unauthorized access
- POST http(s)://{api_server}/{server_id}/action
Request Headers:
Content-Type:application/json Charset=UTF-8 Authorization:Base64-encoded fake_authentication_string
Response Code:
HTTP/1.1 401 Unauthorized
Response Body:
401 Unauthorized This server could not verify that you are authorized to access the document you requested. Either you supplied the wrong credentials (e.g., bad password), or your browser does not understand how to supply the credentials required.