SapccApiGetProductsRequest
Request parameters for getProducts operation in SapccApi. SapccApiGetProductsRequest
interface SapccApiGetProductsRequest {
readonly baseSiteId: string;
readonly currentPage?: number;
readonly fields?: string;
readonly pageSize?: number;
readonly query?: string;
readonly searchQueryContext?: string;
readonly sort?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
baseSiteId | Required | string | Base site identifier {string} SapccApiGetProducts |
currentPage | Optional | number | Current result page. Default value is 0. {number} SapccApiGetProducts |
fields | Optional | string | Response configuration. This is the list of fields that should be returned in the response body. Examples: BASIC,DEFAULT,FULL {string} SapccApiGetProducts |
pageSize | Optional | number | Number of results returned per page. {number} SapccApiGetProducts |
query | Optional | string | Formatted query string. It contains query criteria like free text search, facet. The format is <freeTextSearch>:<sort>:<facetKey1>:<facetValue1>:...:<facetKeyN>:<facetValueN>. {string} SapccApiGetProducts |
searchQueryContext | Optional | string | Name of the search query template to be used in the search query. Examples: DEFAULT, SUGGESTIONS. {string} SapccApiGetProducts |
sort | Optional | string | Sorting method applied to the return results. {string} SapccApiGetProducts |