- Unified journal entry properties: The model unifies essential journal entry details, such as account ID, amount, currency, description, and posted date, making it easier to work with journal entry data from different platforms.
- Journal entry lines: The
journal_linesproperty includes an array of related journal lines, providing a comprehensive view of the journal entry’s constituent transactions.
Properties Supported
| Property | Type | Description |
|---|---|---|
| platform_id | string | The Platform’s ID for this journal entry |
| account_id | string | The accounting platform’s unique ID for the account associated with the journal entry |
| amount | float | The total amount of the journal entry |
| currency_id | string | The Platform’s ID of the currency for the journal entry |
| currency_rate | float | Rate between the currency of the payment and the base currency |
| document_number | string | Reference number for the journal entry |
| journal_entry_type | string | Type of the journal entry |
| description | string | Description of the journal entry |
| posted_date | date | Date of the journal entry |
| updated_at | date | The date at which the information was updated on the accounting platform |
Expandable Attributes
You can expand the following attributes to get the related data| Property | Data Model | Description |
|---|---|---|
| journal_lines | Journal Lines | An array of Journal Lines |
| currency | Currencies | The currency of the journal entry |
| account | Accounts | The account associated to the journal entry |
Journal Lines
The Journal Lines Data Model complements the Journal Entries Data Model, focusing on individual transactions within a journal entry.- Unified journal line properties: The model unifies essential journal line details, such as type, description, net amount, and tax amount, making it easier to work with journal line data from different platforms.
- Hierarchical relationship with journal entries: Journal lines are associated with specific journal entries through the
journal_entry_idproperty, enabling a clear understanding of their context within the broader financial record. - Relationship with other data models: Journal lines are connected to accounts, customers, and taxes using their respective
platform_idproperties, ensuring data consistency and accuracy across different accounting platforms.
Properties Supported
| Property | Type | Description |
|---|---|---|
| platform_id | string | The Platform’s ID for this journal entry |
| journal_entry_id | string | The platform ID for the journal entry associated with this journal line |
| account_id | string | The platform ID for the account associated with this journal line |
| contact_id | string | The platform ID for the customer associated with this journal line |
| tax_id | string | The platform ID for the tax associated with this journal line |
| type | enum | Type of the journal line item. Values are: DEBIT, CREDIT |
| description | string | Description of the journal line |
| net_amount | float | The total amount of this journal line |
| tax_amount | float | The total tax amount of this journal line |
| tracking_category_ids | object | An array of tracking category IDs associated with this journal line |
Expandable Attributes
You can expand the following attributes to get the related data| Property | Data Model | Description |
|---|---|---|
| account | Accounts | The account associated to the journal line |
| tax_rate | Tax Rates | The tax rate associated with the journal line |
| contact | Contacts | The contact associated with the journal line |

