Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 8.53 KB

File metadata and controls

18 lines (15 loc) · 8.53 KB

AccountingJournal

Fields

Field Type Required Description Example
id ?string Unique identifier 8187e5da-dc77-475e-9949-af0f1fa4e4e3
remoteId ?string Provider's unique identifier 8187e5da-dc77-475e-9949-af0f1fa4e4e3
companyId ?string ID of the company this journal belongs to comp_123456789
reference ?string Reference number for the journal JRN-2024-001
memo ?string Memo or description for the journal Monthly closing entries
transactionDate \DateTime Date of the journal transaction 2024-03-20T10:00:00Z
status ?Components\AccountingJournalStatus Status of the journal
lines array<Components\JournalLine> List of journal lines [
{
"id": "line_1",
"account_id": "acc_123",
"description": "Payment for office supplies",
"amount": 10010,
"tax_amount": 2002
}
]
createdAt \DateTime Timestamp when the journal was created 2024-03-20T10:00:00Z
updatedAt \DateTime Timestamp when the journal was last updated 2024-03-20T10:00:00Z
postedAt \DateTime Timestamp when the journal was posted 2024-03-20T10:00:00Z