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

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

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

* Unified Deals properties: The model provides a unified representation of deals properties across different platforms, enabling you to easily access and manage deals data from different platforms.
* Comprehensive deals information: The model provides a comprehensive representation of deals 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 deals             |
| name         | string | The name of the deal                        |
| amount       | float  | The amount of the deal                      |
| company\_id  | string | The company ID associated with the deal     |
| contact\_id  | string | The contact ID associated with the deal     |
| stage\_id    | string | The stage ID of the deal                    |
| currency     | string | The currency of the deal                    |
| status       | string | The status of the deal                      |
| close\_date  | string | The close date of the deal                  |
| created\_at  | date   | The date and time the deal was created      |
| updated\_at  | date   | The date and time the deal was last updated |

<ResponseExample name="The Deals Object">
  ```json The Deals 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",
    "name": "Deal 1",
    "amount": 1000,
    "company_id": "123456",
    "contact_id": "123456",
    "stage_id": "123456",
    "currency": "USD",
    "status": "Open",
    "close_date": "2024-01-22T05:07:31.000Z",
    "created_at": "2024-01-22T05:07:31
    "updated_at": "2024-01-22T05:07:31.000Z"
  }
  ```
</ResponseExample>
