getProductsQuestions

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

  • id Integer
  • productId Integer
Examples

This function retrieves the questions for a given productId.

const result = await idosellRequest.getProductsQuestions
	.productId(33)
	.exec()

This function retrieves the product questions with the ID of 7.

const result = await idosellRequest.getProductsQuestions
	.id(7)
	.exec()