ProductGroup

Usage

This endpoints allows retrieveal, creation, modification and deletion of ProductGroups in Warehouze.

Get

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

ProductGroup Properties
NameTypeDescriptionUpdatable
DataSource DataSource 0 Economic, 1 SmartWeb, 2 Local, 3 Magento, 4 GoldenPlanet, 5 Shopify, 6 WooCommerce, 7 FakturaFil, 8 IEX, 9 Logisnap False
Hidden Boolean False
Id Int32 False
Name String False
Number String False
Sample Get call
        var request = {
            Token: "Insert your token here",
            Query: [
              "Id=1",
            ],
            Properties: [
              Id,
              Number,
              Name
            ],
        };
        $.ajax({
            url: "https://api.warehouze.io/ProductGroup",
            data: request,
            dataType: 'text',
            type: "GET",
            traditional: true,
            success: function (data) {
                console.log(data);
            },
            error: function (data, xHr) {
                console.log(data);
                console.log(xHr);
            }
        });