ServerActionStop
(Difference between revisions)
(Created page with "The stop action is used for stopping a Server. Stopping a server changes its status from ACTIVE to STOPPED. ='''POST''' /servers/'''id'''/action= == Parameters == ; id :...") |
Mike.robski (Talk | contribs) |
||
Line 23: | Line 23: | ||
: ''HTTP/1.1 405 Method Not Allowed'' : The requested action is not supported. | : ''HTTP/1.1 405 Method Not Allowed'' : The requested action is not supported. | ||
: ''HTTP/1.1 409 Conflict'' : Other status change in progress. | : ''HTTP/1.1 409 Conflict'' : Other status change in progress. | ||
+ | |||
+ | [[Category:API]] | ||
<!-- THIS CODE ENABLES DISQUS COMMENTS ON THE PAGE - DELETE TO DISABLE COMMENTING--> | <!-- THIS CODE ENABLES DISQUS COMMENTS ON THE PAGE - DELETE TO DISABLE COMMENTING--> |
Revision as of 14:32, 14 December 2012
The stop action is used for stopping a Server. Stopping a server changes its status from ACTIVE to STOPPED.
Contents |
POST /servers/id/action
Parameters
- id
- The unique identifier of the server to reboot.
JSON
{ "os-stop": null }
Response Codes
- Success
- HTTP/1.1 202 Accepted : The request is accepted for processing.
- Failure
- HTTP/1.1 400 Bad Request : An error occurred.
- HTTP/1.1 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.
- HTTP/1.1 404 Not Found : The resource requested is not found.
- HTTP/1.1 405 Method Not Allowed : The requested action is not supported.
- HTTP/1.1 409 Conflict : Other status change in progress.