Product Structure

The product object contains the following fields

Attribute Type Description
entity_name string Internal name used to identify the product entity
id string Store's internal product id
created_at string Product creation date
sku string Product sku
name string Product name
type string Product type. Ex configurable, simple, virtual, downloadable etc
updated_at string The last time the product was updated
price string Base Product price, without VAT
qty string Product's current quantity
parent_id (only for simple type products) string Store's internal parent product id
options (only for configurable type products) string Store's internal parent product id. Only for simple type products
Resource Area: /intelive/module/products
{
   "entity_name":"product",
   "id":"1870",
   "created_at":"2019-05-31 10:17:47",
   "sku":"BJeans1234",
   "name":"Blue Jeans",
   "type":"configurable",
   "updated_at":"2019-10-25 05:17:40",
   "price":"100.0000",
   "qty":10,
   "parent_id":"1956",
   "options":{
      "created_at":"2019-05-31 10:17:47",
      "name":"Blue Jeans Black",
      "sku":"BJeans1234-1",
      "status":"1",
      "updated_at":"2019-10-25 05:17:40",
      "visibility":"1"
   }
}