[Commerce] Products

The product object contains information such as their productName, productType, etc.

{
  id: "00000000-0000-0000-0000-000000000000",
  remoteId: "4463254208570",
  productUrl: "https://my-store.myshopify.com/products/t-shirt",
  productType: "",
  productStatus: "active",
  images: [
    {
      src: "https://cdn.shopify.com/s/files/1/0264/6992/4922/products/MX412.jpg?v=1638948956"
    }, 
    {
      src: "https://cdn.shopify.com/s/files/1/0264/6992/4922/products/ML9C2.jpg?v=1638949037"
    },
    {
      src: "https://cdn.shopify.com/s/files/1/0264/6992/4922/products/170753_1_1.jpg?v=1638949444"
    },
  ],
  description: "Just a t-shirt 1",
  vendor: "My Store",
  tags: [
  	"shirt",
    "cotton",
  ],
  productName: "T-Shirt"
  createdTimestamp: 1589865609,
  updatedTimestamp: 1676624955,
}

Properties


idString

A unique identifier for the product item.


remoteIdString

The ID of the object in the third-party application.


productUrlString

The URL of the product page on the store's website.


productTypeString

The type of product this item represents, if applicable.


productStatusString

The status of the product item, whether it is active or not.


imagesObject[]

An array of image objects that show different views of the product.


descriptionString

A brief description of the product.


vendorString

The name of the vendor or seller of the product.


tagsString[]

An array of tags that describe the product.


productNameString

The name of the product.


createdTimestampNumber

The Unix timestamp of when the product was created.


updatedTimestampNumber

The Unix timestamp of when the product was last updated.


Product Image Object Properties


srcString

The source of the product image.