getWmsLocations

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

  • locationId Integer
  • locationCode String
  • stockId Integer
  • returnElements Array<String>
  • resultsPage Integer
  • resultsLimit Integer
Examples

This function retrieves the stock locations associated with stock ID 1 from the WMS system.

const result = await idosellRequest.getWmsLocations
	.stockId(1)
	.exec()

This function retrieves page 2 of WMS locations using a page size of 10.

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