searchProductsParameters

Operation Id:
products/parameters/search/post [Official Documentaction]
Methods

  • ids Array<Integer>
  • textIds Array<Object>
  • languagesIds Array<String>
  • parameterValueIds Boolean
  • resultsPage Integer
  • resultsLimit Integer
Examples

This function retrieves the products parameters for the given product IDs.

const result = await idosellRequest.searchProductsParameters
	.ids([123,456,789])
	.exec()

This function retrieves the languages IDs for which product parameters are available, filtering them by the language ID "pol".

const result = await idosellRequest.searchProductsParameters
	.languagesIds(["pol"])
	.exec()

This function is used to retrieve the parameters for the products on page 2 with a limit of 10 items per page.

const result = await idosellRequest.searchProductsParameters
	.page(2,10)
	.exec()