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

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

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

* Unified Tasks properties: The model provides a unified representation of tasks properties across different platforms, enabling you to easily access and manage tasks data from different platforms.
* Comprehensive tasks information: The model provides a comprehensive representation of tasks 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 task              |
| name             | string | The name of the task                        |
| status           | string | The status of the task                      |
| due\_date        | date   | The due date of the task                    |
| parent\_task\_id | string | The parent task ID                          |
| created\_at      | date   | The date and time the task was created      |
| updated\_at      | date   | The date and time the task was last updated |
| completed\_at    | date   | The date and time the task was completed    |
| company\_id      | string | The company ID associated with the task     |
| deal\_id         | string | The deal ID associated with the task        |
| user\_id         | string | The user ID associated with the task        |

<ResponseExample name="The Tasks Object">
  ```json The Tasks 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": "Task 1",
    "status": "open",
    "due_date": "2024-01-22T05:07:31.000Z",
    "parent_task_id": "123456",
    "created_at": "2024-01-22T05:07:31
    "updated_at": "2024-01-22T05:07:31",
    "completed_at": "2024-01-22T05:07:31",
    "company_id": "123456",
    "deal_id": "123456",
    "user_id": "123456"
  }
  ```
</ResponseExample>
