getWmsSuppliers

Operation Id:
wms/suppliers/suppliers/get [Official Documentaction]
Methods

  • resultsPage Integer
  • resultsLimit Integer
  • returnProductsCount Boolean
  • names Array<String>
  • ids Array<Integer>
Examples

This function retrieves the WMS suppliers for page 2 containing 10 results.

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

This function retrieves the IDs of WMS suppliers with the numbers 2, 4, and 6.

const result = await idosellRequest.getWmsSuppliers
	.ids([2,4,6])
	.exec()

This function returns the count of products from suppliers that support the WMS (Warehouse Management System) and are currently active.

const result = await idosellRequest.getWmsSuppliers
	.returnProductsCount(true)
	.exec()