Product Storage

Interface

It allows you:

This API Method is recommended to use when you need detailed information about product inventory.

Columns that can  be used as filters:

Actions can be done:

API Methods fields:

API Methods:

List:

URL: https://api.socratecloud.com/webapi/rest/product/storage/list/{version}?startRow={0}&endRow={100}&accessToken={access_token}

Method: GET

Return: JSON object with next format:

{

    "data": [

        {

            "Organization": "Demo SRL",

            "Value": "product_value",

            "Name": "product_name",

            "WSOrganization": "Demo SRL",

            "Warehouse": "PF",

            "Warehouse_ID": 1000006,"

            "OnHandQty": 1021,

            "ReservedQty": 0,

            "OrderedQty": 9,

            "AvailableQty": 1021,

            "InProgressQty": 0

        }

    ],

    "totalRows": 7

}

List Full:

URL: https://api.socratecloud.com/webapi/rest/product/storage/list_full/{version}?startRow={0}&endRow={100}&accessToken={access_token}

Method: GET

Return: JSON object with next format:

{

    "data": [

        {

            "Organization": "Demo SRL",

            "Value": "product_value",

            "Name": "product_name",

            "WSOrganization": "Demo SRL",

            "Warehouse": "PF",

            "Warehouse_ID": 1000006,"

            "OnHandQty": 1021,

            "ReservedQty": 0,

            "OrderedQty": 9,

            "AvailableQty": 1021,

            "InProgressQty": 0,

            "orderedQtyList": [

                {

                    "DatePromised": "2020-06-09 00:00:00+0300",

                    "QtyOrdered": 3

                },

                {

                    "DatePromised": "2020-06-11 00:00:00+0300",

                    "QtyOrdered": 6

                }

            ]

        }

    ],

    "totalRows": 7

}