ProductSpecifications-productSpecificationId:GET
From Hostway API Documentation
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