Warehouse

Get Product detail.

get/rest/api/warehouse/product/{id}/

Path parameters

idstring required

Response

Returns detailed Product object

namestring nullable

Product name

groupNamestring

Product group name

productGroupIdinteger
categoriesinteger[]

Product category ids

unitstring nullable
weightstring nullable

Product weight [kg]

priceWithoutTaxstring

Net price

skustring nullable

Product SKU

eanstring nullable

EAN-14

idinteger

Internal product ID in Apilo

originalCodestring nullable

External product identifier (unambiguous against API/channel)

quantityinteger

Product stock

priceWithTaxstring

Gross price

taxstring

VAT rate (e.g. 23.00, -1.00 - tax exempt).

status0 | 1 | 8 nullable

Product status (0-inactive, 1-active, 8-archive)

locationstring nullable

Location code

Example response

{
  "name": "BLACK 128GB",
  "groupName": "Samsung Galxy S20 Plus",
  "productGroupId": 123456,
  "categories": [
    12,
    44,
    149
  ],
  "sku": "HG-331/P",
  "ean": "4006381333931",
  "id": 1234,
  "originalCode": "p12345",
  "quantity": 15,
  "tax": "23.00",
  "status": 1,
  "location": "A.001.B.002"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.