Retrieve all of the Journal Entries from the user's accounting platform
The Journal Entries Object
A Rutter Journal Entries Object represent a company's journey entries
Field | Type | Description |
---|---|---|
id | string | Unique identifier for the journal entry and is unique to the business |
posted_at | string | This is the date on which the journal entry was added. This can be different from the creation date and can also be backdated. |
created_date | string | The journal entry's created date. |
currency | string | Currency of the journal entry. |
currency_rate | number | Rate between the currency of the journal entry and the base currency of the business. |
line_items | object[] | Array of journal entry lines. |
memo | string | User-friendly reference for the journal entry. |
updated_at | string | Date the record was last changed. |
{
"id": "1",
"posted_at": "2001-06-09T12:28:24",
"created_at": "2001-06-09T12:28:24",
"currency": "USD",
"currency_rate": 1.25,
"line_items": [
{
"description": "Services rendered.",
"credit": 200,
"debit": 3,
"tax_amount": 40,
"account_ref": {
"id": "355",
"name": "Depreciation Expense"
},
"tax_rate_id": "123",
"tracking_category_id": "1234"
}
],
"memo": "This is your Bill Memo.",
"updated_at": "2001-06-09T12:28:24"
}