Skip to content

JSON collective entries export (file)

Our file-based JSON export allows you to download journal entries in a structured form, best suited to integrate programmatically into your ERP or accounting systems.

  • Financial amounts are exported as strings.
  • Dates are exported as YYYY-MM-DD

Example

JSON - Universal Accounting - Export
Accounts payables, receivables and credit card transactions using foreign currencies
Download
kontera-json-export.json
{
"konteraId": string,
"contact": {
"name": string,
"contactId": string,
"externalId": string | null,
"legalType": string,
"firstName": string | null,
"lastName": string | null,
"companyName": string | null,
"companyTaxNumber": string | null,
"companyUid": string | null,
"address": {
"street": string | null,
"houseNumber": string | null,
"postalCode": string | null,
"city": string | null,
"country": string | null
}
},
"invoice": {
"number": string | null,
"billingPeriod": {
"from": string,
"to": string
} | null,
"payableUntil": string | null,
"qrReferenceNumber": string | null,
"owner": string | null,
"source": string | null,
"sourceId": string | null
},
"entries": [{
"entryId": string,
"entryNumber": number,
"type": string,
"date": string,
"lines": [{
"lineId": string,
"lineNumber": number,
"creditDebit": "debit" | "credit",
"amount": string,
"currency": string,
"amountInAccountCurrency": string | null,
"account": {
"externalId": string | null,
"number": string,
"currency": string | null
},
"tax": {
"externalId": string | null,
"code": string | null,
"value": string
},
"originalAmount": string | null,
"originalCurrency": string | null,
"text": string | null,
"dimensions": [{
"externalId": string | null,
"name": string,
"type": string
}]
}]
}]
}