Orders-orderId-account-contactInfo:GET
From Hostway API Documentation
Revision as of 17:03, 15 February 2013 by Mike.robski (Talk | contribs)
GET /orders/{orderId}/account/contactInfo
Get all contact infos for an account in a given order.
Contents |
Request
GET /orders/{orderId}/account/contactInfo
Request Parameters
- orderId - string
- The unique order Id. The URI of the order is returned by the POST /orders call.
URI Parameters
None.
Request Headers
- Cookie
- A cookie named OwnerId to identify the client (for most browser clients, the browser will do this automatically, depending on the browser configuration). The value of the cookie would come from the response to the create order request in the Set-Cookie response header.
Response
Status Code
- 200 OK
- The operation was successfully completed.
- 404 Not Found
- An account has not been added to the given order or the order does not exist.
Response Body
{ "contactInfo": { "regular": {...}, "billing": {...}, "administrator": {...}, "technical": {...} }, "links": [ {"href": "https://api.hostway.com/orders/{orderId}/account/contactInfo/", "rel": "self"} ] }
Parameters
- contactInfo - dictionary
- Details for all contact types specified for the account.
- links - list
- Hypermedia for this resource.
See also