Path: / rs / product / {dsName} / {shopGUID} / search

Performs a search on the index (this POST call is idempotent) Uses an idempotent POST call as suggested in the RESTful Web Services Cookbook. Recipe 8.3: How to handle queries with large input

Path parameters:
shopGUID - is the GUID identifier of a shop.
dsName - is the datasource name (i.e. epages6 Storename).

Method Summary
ResourceDescription
POST /rs/product/{dsName}/{shopGUID}/searchPerforms a search on the index (this POST call is idempotent) Uses an idempotent POST call as suggested in the RESTful Web Services Cookbook.

Method Detail
HTTP Example:
POST /rs/product/{dsName}/{shopGUID}/search

API Example:

SearchResource.searchProducts({'shopGUID': /* shopGUID is the GUID identifier of a shop. */,
  'dsName': /* dsName is the datasource name (i.e. */,
  '$entity': /* params are the search params. */});

Performs a search on the index (this POST call is idempotent) Uses an idempotent POST call as suggested in the RESTful Web Services Cookbook. Recipe 8.3: How to handle queries with large input

Input:
SearchParams - are the search params.
Output:
ProductSearchResponse - search response
Produces:
application/json
application/xml