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