Skip to content

JSON (file) base data import

To import your base data using our JSON format, make sure you follow our overall guidelines:

  • Your file needs to be a valid JSON according to RFC8259.
  • All base data needs to be included in one file.
  • If you remove data from the file, Kontera will mark it as deleted at well.,
  • Make sure your externalId-fields stay consistent between uploads.
  • All your externalId-fields will be included in the export
  • Numbers handling financial data are encoded as string, but will still be validated if they are proper numbers.

Content of base data import

Your import needs to be a single *.json file, containing the following keys:

kontera.json
"organization": {
// Object
},
"currencies": [
// Array
],
"accounts": [
// Array
],
"taxes": [
// Array
],
"taxPeriods": [
// Array
],

The following keys are optional:

kontera.json
"contacts": [
// Array
],
"costCenters": [
// Array
],
"projects": [
// Array
]

Please check out our API reference for detailed information about the individual properties.