ServerActionRemoveFlexibleIP
From Hostway API Documentation
(Difference between revisions)
Mike.robski (Talk | contribs) m (1 revision: Release 86) |
|||
(6 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
This operation will remove an already assigned flexible IP from a [[Server]]. | This operation will remove an already assigned flexible IP from a [[Server]]. | ||
− | ='''POST''' / | + | ='''POST''' /accounts/''{accountId}''/flexcloud/servers/''{id}''/action= |
== Parameters == | == Parameters == | ||
+ | ; accountId - ''string'' | ||
+ | : The selected account Id. | ||
+ | |||
; id | ; id | ||
: The unique identifier of the server. | : The unique identifier of the server. | ||
Line 26: | Line 29: | ||
: ''HTTP/1.1 400 Bad Request'' : Check your parameter (no address in JSON). / Server Not Found. | : ''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 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 409 Conflict'' : Server not provisioned. / Invalid IP address | : ''HTTP/1.1 409 Conflict'' : Server not provisioned. / Invalid IP address | ||
: ''HTTP/1.1 502 Bad Gateway'' : Error while removing IP address ... | : ''HTTP/1.1 502 Bad Gateway'' : Error while removing IP address ... | ||
+ | == Alternative URI /servers/{id}/action == | ||
+ | An alternative way to execute this call is to omit the ''accountId'' portion of the URI. In this case the system assumes the request is executed for the account identified in the [[Authentication|authorization header]]. | ||
− | < | + | <code>POST /servers/{id}/action</code> |
− | + | ||
− | { | + | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | [[Category:Hostway API]] | |
+ | [[Category:FlexCloud Server API]] |
Latest revision as of 11:00, 11 October 2013
This operation will remove an already assigned flexible IP from a Server.
Contents |
POST /accounts/{accountId}/flexcloud/servers/{id}/action
Parameters
- accountId - string
- The selected account Id.
- 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 404 Not Found : The resource requested is not found.
- HTTP/1.1 409 Conflict : Server not provisioned. / Invalid IP address
- HTTP/1.1 502 Bad Gateway : Error while removing IP address ...
Alternative URI /servers/{id}/action
An alternative way to execute this call is to omit the accountId portion of the URI. In this case the system assumes the request is executed for the account identified in the authorization header.
POST /servers/{id}/action