Location

Usage

This endpoints allows retrieveal of locations in Warehouze.

Get

Call requires at least one property name, blank query is allowed.

Location Properties
NameTypeDescriptionUpdatable
Id Int32 False
Name String False
Number String False
WarehouseId Int32 False
Sample Get call
        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);
            }
        });