Items

Get list of items

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

Query Parameters

Name
Type
Description

from_date*

string

yyyy-MM-dd

to_date*

string

yyyy-MM-dd

name_contains

string

searches items where name like

barcode_contains

string

searches items where barcode like

include_pic

boolean

group_code

String

from specified group code

[
   {
        "GrossCost": 38.03,
        "Cost": 44.5,
        "Pic1": null,
        "Pic2": null,
        "Pic3": null,
        "ItemID": "a746f4cc-029b-4576-a0c6-05c45794a947",
        "Name": "בקבוק טרמי",
        "BarcodeNumber": "055000001137",
        "ModelNumber": "555",
        "Description": "מחמם במיוחד",
        "GeneralPrice": 89,
        "ERPCode": null
    },
     {
        "GrossCost": 54.7,
        "Cost": 64,
        "Pic1": null,
        "Pic2": null,
        "Pic3": null,
        "ItemID": "97ea2c5e-6709-4198-8e3f-00b768f5c3cc",
        "Name": "תלמודם של גאונים / עוזיאל פוקס",
        "BarcodeNumber": "9789659211531",
        "ModelNumber": "789",
        "Description": null,
        "GeneralPrice": 128,
        "ERPCode": null
    }
 
]

Get single item by barcode number

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

Path Parameters

Name
Type
Description

barcode_number

string

Query Parameters

Name
Type
Description

include_pic

boolean

default is false

Get Matrix Item by model number

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

Path Parameters

Name
Type
Description

model_number

string

Query Parameters

Name
Type
Description

include_pic

boolean

GET https://api.rnetpos.com/v1/items/query

Path Parameters

Name
Type
Description

fields

string

where

string

order_by

string

Upsert Item By Barcode Or By ID (if exists updates , if not creates new)

POST https://api.rnetpos.com/v1/items/id(or /barcode)

Must specify Id or barcode in path and include Item object in Body

Path Parameters

Name
Type
Description

barcode

String

Id

String

Last updated

Was this helpful?