getProductsSeries

Operation Id:
products/series/get [Official Documentaction]
Methods

  • return_last_changed_time String
  • ids Array<Integer>
  • names Array<String>
  • languagesIds Array<String>
  • resultsPage Integer
  • resultsLimit Integer
Examples

This function retrieves the last changed time for a series of products with a specific identifier.

const result = await idosellRequest.getProductsSeries
	.return_last_changed_time("y")
	.exec()

This function returns the IDs of the product series with the specified ID of 3.

const result = await idosellRequest.getProductsSeries
	.ids([3])
	.exec()

This function retrieves the language IDs for a specific product series based on the input language code "pol".

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

This function retrieves a specific range of product series given the page number and page size.

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