Inventory

Get list of Inventory details by date modified

GET https://api.rnetpos.com/v1/inventory

Query Parameters

Name
Type
Description

date_modified*

string

yyyy-MM-dd

totals_only

boolean

group_code

String

from specified item's group

store_code

String

from specified store

totals_only=true

[
    {
        "Item": {
            "ItemID": "c1ba92c2-f20f-4547-b641-0167b397db3e",
            "Name": "בקבוק",
            "BarcodeNumber": "7294276308103",
            "ModelNumber": null,
            "Description": null,
            "ERPCode": null
        },
        "storesInventory": [],
        "TotalOnHand": -153
    }
]


totals_only=false

[
    {
        "Item": {
            "ItemID": "c1ba92c2-f20f-4547-b641-0167b397db3e",
            "Name": "בקבוק",
            "BarcodeNumber": "7294276308103",
            "ModelNumber": null,
            "Description": null,
            "ERPCode": null
        },
        "storesInventory": [
            {
                "OnHand": 17,
                "StoreId": "5f20e99a-99a8-4f84-91dd-ba2b4e973c8d",
                "StoreName": "סניף ירושלים",
                "Code": "1",
                "ERPCode": null
            },
            {
                "OnHand": -2,
                "StoreId": "f14c8a70-8506-42de-a220-74c000c7d271",
                "StoreName": "סניף חיפה",
                "Code": "3",
                "ERPCode": null
            },
            {
                "OnHand": -12,
                "StoreId": "dea6fe69-50e3-4811-819e-6a615a2652a7",
                "StoreName": "סניף באר שבע",
                "Code": "6",
                "ERPCode": null
            }
        ],
        "TotalOnHand": -153
    }
]

Get list of Inventory details for Item

GET https://api.rnetpos.com/v1/inventory/barcode/{barcode number}

Path Parameters

Name
Type
Description

barcode

string

Query Parameters

Name
Type
Description

totals_only

boolean

Get single Inventory for Item in Store

GET https://api.rnetpos.com/v1/inventory/barcode/{barcode number}/store/{store number}

Path Parameters

Name
Type
Description

barcode

string

store

string

Get Single Inventory from Matrix Item in Store

GET https://api.rnetpos.com/v1/inventory/model/{model number}/store/{store number}

Path Parameters

Name
Type
Description

model

string

store

string

Last updated

Was this helpful?