ServiceSpecifications-serviceSpecificationId-attributes:GET
From Hostway API Documentation
(Difference between revisions)
Mike.robski (Talk | contribs) |
Mike.robski (Talk | contribs) m (1 revision: Release 85) |
||
(3 intermediate revisions by one user not shown) | |||
Line 42: | Line 42: | ||
* [[Common Features]] | * [[Common Features]] | ||
+ | {{disqus}} | ||
[[Category:Hostway API]] | [[Category:Hostway API]] | ||
[[Category:Product Catalog API]] | [[Category:Product Catalog API]] |
Latest revision as of 15:57, 27 September 2013
[edit] GET /serviceSpecifications/{serviceSpecificationId}/attributes
Retrieves service specification attributes.
Contents |
[edit] Request
GET /serviceSpecifications/{serviceSpecificationId}/attributes
[edit] Response
Returns a list containing product specification attributes for a particular service specification.
[edit] Status Code
- 200 OK
- Success
- 404 Not Found
- Returned if the service specification Id could not be found.
[edit] Response Body
{ "list": [ { "textkey": "core.websplanet.feature", "value": "Some attribute value" } ], "links": [ {"href": "https://api.hostway.com/servicespecifications/core.websplanet.1/attributes", "rel": "self"} ], }
[edit] 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
[edit] See also