ProductSpecifications-productSpecificationId: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 53: | Line 53: | ||
* [[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
GET /productSpecifications/{productSpecificationId}
Retrieves product specification details.
Contents |
Request
GET /productSpecifications/{productSpecificationId}
Response
Returns a dictionary containing product specification details for a particular product specification Id.
Status Code
- 200 OK
- Success
- 404 Not Found
- Returned if the product specification Id could not be found.
Response Body
{ "name": "{productSpecificationName}", "ranking": 1, "rules": "https://api.hostway.com/productSpecifications/core.netdba_1/rules", "serviceSpecifications": "https://api.hostway.com/productSpecifications/{productSpecificationId}/serviceSpecifications", "offerings": "https://api.hostway.com/productSpecifications/{productSpecificationId}/offerings", "links": [ {"href": "https://api.hostway.com/productSpecifications/{productSpecificationId}/", "rel": "self"} ] }
Parameters
- name - string
- The name of product
- ranking - integer
- Product ranking value
- rules - link
- Hyperlink to the product's rules
- serviceSpecifications - link
- Hyperlink to the product's serviceSpecifications
- offerings - link
- Hyperlink to the product's offerings
- 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