For AI agents: visit https://docs.eezi.io/llms.txt for an index of all pages formatted in Markdown and endpoints in OpenAPI.
recipient.address.line1 is required.
recipient.address.city is required.
recipient.address.state is required.
recipient.address.country is required.
recipient.address.postalCode is required.
lines[].unit is required.
type Invoice {
// ...all generic invoice fields
customInfo: {
request: {
invoiceStartDate?: string;
}
}
due: string;
lines: [
{
// ..other line item fields
unit: UnitsOfMeasure;
}
];
recipient:{
peppolId: {
endpointId: string;
};
}
}
| Name | Type | Required | Description |
|---|
customInfo.request.invoiceStartDate | string (ISO 8601 date) | No | Start date of invoice |
due | string (ISO 8601 date) | Yes | Due date of invoice |
lines[].unit | string | Yes | A value from an enumerated list as outlined on Units of Measure |
recipient.address.line1 | string | Yes | Address line 1 (Street address/PO Box/Company name). |
recipient.address.city | string | Yes | City/District/Suburb/Town/Village. |
recipient.address.state | string | Yes | State/County/Province/Region. |
recipient.address.country | string | Yes | Three-letter country code (ISO 3166-1 alpha-3). |
recipient.address.postalCode | string | Yes | ZIP or postal code |
recepient.peppolId.endpointId | string | Yes | Peppol ID of the recipient |
Invoice - Japan.csv