Accounts-account-dedicatedServers-server:GET
From Hostway API Documentation
(Difference between revisions)
(→Parameters) |
Corinne.chui (Talk | contribs) m (1 revision) |
Latest revision as of 13:35, 30 May 2016
[edit] GET /accounts/{accountId}/dedicatedServers/{serverId}
Retrieves specified dedicated server info.
Contents |
[edit] Request
GET /accounts/{accountId}/dedicatedServers/{serverId}
[edit] Request Parameters
- accountId - string
- The user account owning the dedicated server
- serverId - string
- The specified dedicated server Id
[edit] Request Headers
- Authorization - HTTP Authorization header [1]
- The Authentication credentials of the client application.
[edit] Response
[edit] Response Body
{ "dedicatedServerId": "{serverId}", "serverName": "{serverName}", "pdu": "{pduInfo}", "ipAddresses": [ { "href": "{APIBaseURL}/accounts/{accountId}/dedicatedServers/{serverId}/ipAddresses", "rel": "related" } ], "links": [ { "href": "{APIBaseURL}/accounts/{accountId}/dedicatedServers/{serverId}/", "rel": "self" } ] }
[edit] Parameters
- dedicatedServerId - string
- The Id of the dedicated server
- serverName - string
- The name of the dedicated server
- pduInfo - string(optional)
- A comma-separated list of PDU interfaces used for the server's remote-reboot. If the PDU is not configured, the field is omitted.
- ipAddresses - list
- Links to IP addresses for this dedicated server
- links - list
- Hypermedia for this resource. Link to self will preserve sorting and pagination set by the request. Links to the first, last, previous and next pages will also be included if applicable
[edit] Expected Response Codes
- 200 OK
- Success
- 401 Unauthorized
- The supplied credentials are invalid.
- 403 Forbidden
- The authorized user does not have permissions to access the resource. The only user(s) who has access to the dedicated servers list must be a sales agent, the account owner, or the account technical admin.
- 404 Not Found
- The account or server does not exist.
[edit] Examples
[edit] Get specific dedicated server info
Request
GET accounts/test-account123/dedicatedServers/test-srv-00132ff1
Response
{ "dedicatedServerId": "test-srv-00132ff1", "serverName": "Server10", "ipAddresses": [ { "href": "{APIBaseURL}/accounts/test-account123/dedicatedServers/test-srv-00132ff1/ipAddresses", "rel": "related" } ], "links": [ { "href": "{APIBaseURL}/accounts/test-account123/dedicatedServers/test-srv-00132ff1/", "rel": "self" } ] }
[edit] See also