> ## Documentation Index
> Fetch the complete documentation index at: https://integrations.docs.commenda.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Products are the goods and services that you sell to your customers. You can create products or import them from your ecommerce platform.

**The Products Data Model** simplifies the handling and retrieval of products data for your application. The model provides a unified representation of products data across different platforms, enabling you to easily access and manage products data from different platforms.

* Unified Products properties: The model provides a unified representation of products properties across different platforms, enabling you to easily access and manage products data from different platforms.
* Comprehensive products information: The model provides a comprehensive representation of products data, including all the properties and relationships that you can retrieve for an order.

## Attributes

### Product Attributes

| Property             | Type    | Description                                                           |
| -------------------- | ------- | --------------------------------------------------------------------- |
| rootfi\_id           | integer | The RootFi ID of the product                                          |
| rootfi\_created\_at  | string  | The ISO 8601 timestamp at which the record was created in RootFi      |
| rootfi\_updated\_at  | string  | The ISO 8601 timestamp at which the record was last updated in RootFi |
| rootfi\_company\_id  | integer | The RootFi company ID associated with the product                     |
| platform\_id         | string  | The Platform's ID for the product                                     |
| platform\_unique\_id | string  | The platform's unique identifier for the product                      |
| name                 | string  | The name of the product                                               |
| description          | string  | The description of the product                                        |
| sku                  | string  | The SKU (Stock Keeping Unit) of the product                           |
| status               | enum    | The status of the product (ACTIVE, INACTIVE)                          |
| created\_at          | string  | The date the product was created                                      |
| updated\_at          | string  | The date the product was updated                                      |

## Properties Supported

| Property     | Type             | Description                                 |
| ------------ | ---------------- | ------------------------------------------- |
| platform\_id | string           | The Platform's ID for the product           |
| name         | string           | The name of the product                     |
| description  | string           | The description of the product              |
| sku          | string           | The SKU (Stock Keeping Unit) of the product |
| status       | enums.BaseStatus | The status of the product                   |
| created\_at  | string           | The date the product was created            |
| updated\_at  | string           | The date the product was updated            |

<ResponseExample name="The Products Object">
  ```json The Products Response Object theme={null}
  {
    "rootfi_id": 157,
    "rootfi_created_at": "2024-01-22T05:07:31.465Z",
    "rootfi_updated_at": "2024-01-22T05:07:31.000Z",
    "rootfi_company_id": 1089,
    "platform_id": "prod_789",
    "platform_unique_id": "WH-2024-BLK",
    "name": "Wireless Headphones",
    "description": "Premium wireless headphones with noise cancellation",
    "sku": "WH-2024-BLK",
    "status": "ACTIVE",
    "created_at": "2024-01-22T05:07:31.465Z",
    "updated_at": "2024-01-22T05:07:31.000Z"
  }
  ```
</ResponseExample>
