ServiceSpecifications-serviceSpecificationId-attributes:GET
From Hostway API Documentation
Revision as of 15:57, 27 September 2013 by Mike.robski (Talk | contribs)
GET /serviceSpecifications/{serviceSpecificationId}/attributes
Retrieves service specification attributes.
Contents |
Request
GET /serviceSpecifications/{serviceSpecificationId}/attributes
Response
Returns a list containing product specification attributes for a particular service specification.
Status Code
- 200 OK
- Success
- 404 Not Found
- Returned if the service specification Id could not be found.
Response Body
{ "list": [ { "textkey": "core.websplanet.feature", "value": "Some attribute value" } ], "links": [ {"href": "https://api.hostway.com/servicespecifications/core.websplanet.1/attributes", "rel": "self"} ], }
Parameters
- list - list
- the list of service specification attributes; contains tuples of:
- textkey - string - the attribute unique key
- value - string - the attribute value
- links - list
- Hypermedia for this resource. Link to self will preserve filtering, sorting and pagination set by the request. Links to the first, last, previous and next pages will also be included if applicable
See also