Skip to main content
The Projects Data Model represents projects used to track and organize financial transactions across various accounting platforms. This unified model simplifies the management and retrieval of project information.
  • Unified project properties: Essential project details, such as name, description, and status, are standardized across different accounting platforms
  • Project tracking: Projects enable businesses to track financial transactions and expenses separately, providing better visibility into project-specific financial performance

Attributes

Project Attributes

PropertyTypeDescription
rootfi_idintegerUnique identifier assigned by Commenda for this project
rootfi_created_atstringTimestamp when this record was created in Commenda’s system (ISO 8601)
rootfi_updated_atstringTimestamp when this record was last updated in Commenda’s system (ISO 8601)
rootfi_company_idintegerCompany identifier this project belongs to within Commenda
platform_idstringUnique identifier for this project in the source accounting platform
platform_unique_idstringAlternative unique identifier from the platform (some platforms provide multiple IDs)
namestringThe name of the project
descriptionstringThe description of the project
statusstringThe status of the project
updated_atstringThe date and time the project was last updated

Properties Supported

PropertyTypeDescription
platform_idstringThe Platform’s ID for this project
namestringThe name of the project
descriptionstringThe description of the project
statusstringThe status of the project
updated_atstringThe date and time the project was last updated
{
  "rootfi_id": 123,
  "rootfi_created_at": "2024-01-25T09:00:00Z",
  "rootfi_updated_at": "2024-01-25T09:00:00Z",
  "rootfi_company_id": 456,
  "platform_id": "123456_1",
  "platform_unique_id": "123456",
  "name": "Project 1",
  "description": "This is a project",
  "status": "active",
  "updated_at": "2024-01-25T09:00:00Z"
}