Skip to main content
The Items Data Model simplifies the handling and retrieval of Items data for your application. The model provides a unified representation of Items data across different platforms, enabling you to easily access and manage Items data from different platforms.
  • Unified Items properties: The model provides a unified representation of Items properties across different platforms, enabling you to easily access and manage Items data from different platforms.
  • Comprehensive Items information: The model provides a comprehensive representation of Items data, including all the properties and relationships that you can retrieve for an Item.

Attributes

Item Attributes

PropertyTypeDescription
rootfi_idintegerThe RootFi ID of the item
rootfi_created_atstringThe ISO 8601 timestamp at which the record was created in RootFi
rootfi_updated_atstringThe ISO 8601 timestamp at which the record was last updated in RootFi
rootfi_company_idintegerThe RootFi company ID associated with the item
platform_idstringThe Platform’s ID for the Item
platform_unique_idstringThe platform’s unique identifier for the item
created_atstringThe date and time the Item was created
updated_atstringThe date and time the Item was updated
namestringThe name of the Item
descriptionstringThe description of the Item
codestringThe code of the Item
unit_pricenumberThe unit price of the Item
currency_idstringThe currency id of the Item
statusenumThe status of the Item (ACTIVE, ARCHIVED, UNKNOWN)

Properties Supported

PropertyTypeDescription
platform_idstringThe Platform’s ID for the Item
created_atstringThe date and time the Item was created
updated_atstringThe date and time the Item was updated
namestringThe name of the Item
descriptionstringThe description of the Item
codestringThe code of the Item
unit_pricenumberThe unit price of the Item
currency_idstringThe currency id of the Item
statusenumThe status of the Item. Allowed values are ACTIVE, ARCHIVED, UNKNOWN
{
  "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": "item_123456",
  "created_at": "2024-01-22T05:07:31.000Z",
  "updated_at": "2024-01-22T05:07:31.000Z",
  "name": "Premium Widget",
  "description": "High-quality widget for enterprise use",
  "code": "WIDGET-001",
  "unit_price": 99.99,
  "currency_id": "USD",
  "status": "ACTIVE"
}