Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 8.54 KB

File metadata and controls

18 lines (15 loc) · 8.54 KB

AccountingJournalResultData

Fields

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