Company

Usage

This endpoints allows synchronization in Warehouze.

Post
  • /Synchronize
    This endpoint is equivalent to pressing the Synchronize button in Warehouze.
Sample Post Synchronize call
        var request = {
            Token: "Insert your token here",
        };
        $.ajax({
            url: "https://api.warehouze.io/Company/Synchronize",
            data: request,
            dataType: 'text',
            type: "POST",
            success: function (data) {
                console.log(data);
            },
            error: function (data, xHr) {
                console.log(data);
                console.log(xHr);
            }
        });