Skip to main content
The Transactions Data Model simplifies the handling and retrieval of transactions-related information across various ecommerce 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 an order.

Attributes

Transaction Attributes

PropertyTypeDescription
rootfi_idintegerThe RootFi ID of the transaction
rootfi_created_atstringThe ISO 8601 timestamp at which the record was created in RootFi
rootfi_updated_atstringThe ISO 8601 timestamp at which the record was last updated in RootFi
rootfi_company_idintegerThe RootFi company ID associated with the transaction
platform_idstringThe Platform’s ID for the transaction
platform_unique_idstringThe platform’s unique identifier for the transaction
amountnumberThe amount of the transaction
feenumberThe fee of the transaction
typestringThe type of the transaction
payment_methodstringThe payment method of the transaction
statusstringThe status of the transaction
descriptionstringThe description of the transaction
currency_idstringThe currency ID of the transaction
order_idstringThe order ID associated with the transaction
created_atstringThe date and time the transaction was created
updated_atstringThe date and time the transaction was updated

Properties Supported

PropertyTypeDescription
platform_idstringThe Platform’s ID for the transaction
amountnumberThe amount of the transaction
feenumberThe fee of the transaction
typestringThe type of the transaction
payment_methodstringThe payment method of the transaction
statusstringThe status of the transaction
descriptionstringThe description of the transaction
currency_idstringThe currency ID of the transaction
order_idstringThe order ID associated with the transaction
created_atstringThe date and time the transaction was created
updated_atstringThe date and time the transaction was updated
{
  "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",
  "platform_unique_id": "TXN-2024-001",
  "amount": 97.19,
  "fee": 2.50,
  "type": "SALE",
  "payment_method": "CREDIT_CARD",
  "status": "COMPLETED",
  "description": "Payment for Order #ORD-2024-001",
  "currency_id": "USD",
  "order_id": "ord_123456",
  "created_at": "2024-01-22T05:07:31.465Z",
  "updated_at": "2024-01-22T05:07:31.000Z"
}