The store service contains endpoint for managing the store. Searching, retrieving, purchasing products, etc.
The store service is made up of the following methods:
All methods return a standard container model that wraps the response. The model contains the response and a list of validation errors that have occurred if there are any. There will either be validation errors or a result.
{ "validationErrors": [ { "description": "Description", // A description of the error "path": "path" // The path to the node in error e.g. blah.that.this } ], "result": null // The object being returned from the call}