Legacy Data Import
For new mandates and switching from another provider might require an data of previously submitted invoices for submitting new Credit notes.
Invoice
Changes to generic fields
This route operates with a slightly narrower data model, and include the following required fields:
refissuedrecipient.taxIdrecipient.nametotal.amountlines[].descriptionlines[].quantitylines[].price.amountlines[].vat.amountlines[].vat.typelines[].vat.coderouteAs
type Invoice {
// Subset of generic fields
ref: string;
issued: string;
recipient: {
taxId: string;
name: string;
};
total: {
amount: number;
};
lines: {
description: string;
quantity: number;
price: {
amount: number;
};
vat: {
amount: number;
type: string;
code: string;
};
}[];
// Route-specific fields
routeAs: 'LEGACY_DATA';
}Field information
| Name | Type | Required | Description |
|---|---|---|---|
routeAs | string | Yes | Fixed value: LEGACY_DATA |
Example CSV file
Invoice - Legacy Data Import.csv
Updated about 13 hours ago