This endpoints allows retrieveal of productlocations in Warehouze.
Call requires at least one property name, blank query is allowed.
Name | Type | Description | Updatable |
---|---|---|---|
Id | Int32 | False | |
LocationId | Int32 | False | |
ProductId | Int32 | False | |
WarehouseId | Int32 | False |
var request = { Token: "Insert your token here", Query: [ "Id=130", ], Properties: [ "Id", "LocationId", ], }; $.ajax({ url: "https://api.warehouze.io/ProductLocation", data: request, dataType: 'text', type: "GET", traditional: true, success: function (data) { console.log(data); }, error: function (data, xHr) { console.log(data); console.log(xHr); } });