> ## 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

> Notes Data Model simplifies the handling and retrieval of notes-related information across various crm platforms.

**The Notes Data Model** simplifies the handling and retrieval of notes-related information across various ecommerce platforms.

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

## Attributes

## Properties Supported

| Property     | Type   | Description                                 |
| ------------ | ------ | ------------------------------------------- |
| platform\_id | string | The Platform's ID for the notes             |
| note         | string | The note content                            |
| deal\_id     | string | The deal ID associated with the note        |
| company\_id  | string | The company ID associated with the note     |
| contact\_id  | string | The contact ID associated with the note     |
| lead\_id     | string | The lead ID associated with the note        |
| user\_id     | string | The user ID associated with the note        |
| created\_at  | date   | The date and time when the note was created |
| updated\_at  | date   | The date and time when the note was updated |

<ResponseExample name="The Notes Object">
  ```json The Notes Response Object theme={null}
  {
    "rootfi_id": 157,
    "rootfi_deleted_at": null,
    "rootfi_created_at": "2024-01-22T05:07:31.465Z",
    "rootfi_updated_at": "2024-01-22T05:07:31.000Z",
    "rootfi_company_id": 1089,
    "platform_id": "123456",
    "note": "This is a note",
    "deal_id": "123456",
    "company_id": "123456",
    "contact_id": "123456",
    "lead_id": "123456",
    "user_id": "123456",
    "created_at": "2024-01-22T05:07:31
    "updated_at": "2024-01-22T05:07:31
  }
  ```
</ResponseExample>
