ServerActionRemoveFlexibleIP
(Difference between revisions)
Mike.robski (Talk | contribs) |
|||
Line 29: | Line 29: | ||
: ''HTTP/1.1 502 Bad Gateway'' : Error while removing IP address ... | : ''HTTP/1.1 502 Bad Gateway'' : Error while removing IP address ... | ||
+ | |||
+ | [[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:33, 14 December 2012
This operation will remove an already assigned flexible IP from a Server.
Contents |
POST /servers/id/action
Parameters
- id
- The unique identifier of the server.
Request
JSON
{ "removeFloatingIp" : { "address" : {ip_address} } }
- address - string
- The address of the allocated flexible IP.
Response Codes
- Success
- HTTP/1.1 202 Accepted : The request is accepted for processing.
- Failure
- HTTP/1.1 400 Bad Request : Check your parameter (no address in JSON). / Server Not Found.
- 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 409 Conflict : Server not provisioned. / Invalid IP address
- HTTP/1.1 502 Bad Gateway : Error while removing IP address ...