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

> Transactions are the records of the financial activities of a business. The Transactions Data Model simplifies the handling and retrieval of Transactions data for your application.

**The Transactions Data Model** simplifies the handling and retrieval of Transactions data for your application. The model provides a unified representation of transactions data across different platforms, enabling you to easily access and manage transactions data from different platforms.

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

## Attributes

### Transaction Attributes

| Property             | Type    | Description                                                           |
| -------------------- | ------- | --------------------------------------------------------------------- |
| rootfi\_id           | integer | The RootFi ID of the transaction                                      |
| rootfi\_created\_at  | string  | The ISO 8601 timestamp at which the record was created in RootFi      |
| rootfi\_updated\_at  | string  | The ISO 8601 timestamp at which the record was last updated in RootFi |
| rootfi\_company\_id  | integer | The RootFi company ID associated with the transaction                 |
| platform\_id         | string  | The Platform's ID for the Transaction                                 |
| platform\_unique\_id | string  | The platform's unique identifier for the transaction                  |
| amount               | number  | The amount of the transaction                                         |
| type                 | string  | The type of the transaction                                           |
| created\_at          | string  | The date and time the transaction was created                         |
| description          | string  | The description of the transaction                                    |
| currency\_id         | string  | The currency ID of the transaction                                    |
| status               | string  | The status of the transaction                                         |
| source               | string  | The source of the transaction                                         |

## Properties Supported

| Property     | Type   | Description                                   |
| ------------ | ------ | --------------------------------------------- |
| platform\_id | string | The Platform's ID for the Transaction         |
| amount       | number | The amount of the transaction                 |
| type         | string | The type of the transaction                   |
| created\_at  | string | The date and time the transaction was created |
| description  | string | The description of the transaction            |
| currency\_id | string | The currency ID of the transaction            |
| status       | string | The status of the transaction                 |
| source       | string | The source of the transaction                 |

<ResponseExample name="The Transactions Object">
  ```json The Transactions 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": "txn_123456",
    "amount": 150.00,
    "type": "credit",
    "created_at": "2024-01-22T05:07:31.465Z",
    "description": "Payment received from customer",
    "currency_id": "USD",
    "status": "completed",
    "source": "payment"
  }
  ```
</ResponseExample>
