Poland
Invoice
Changes to generic fields
recipient.nameis required.recipient.taxIdis required.recipient.address.line1is required.recipient.address.line2is required.recipient.address.cityis required.recipient.address.countryis required.recipient.address.postalCodeis required.lines[].unitis required.customInfo.pol.localGovernmentSubordinateis requiredcustomInfo.pol.vatGroupis required
Poland-specific fields
type Invoice {
// ...generic invoice fields
dueDate?: string;
purschaseOrderRef?: string;
lines: [{
// ...everything from invoice.lines
unit: string;
vat: {
code: TaxCode;
}
}];
recipient:{
//..everything from invoice.recipient
// for self-billed invoices input your details as the recipient in the invoice.recipient fields below and also include invoice.sender information as the other parties information.
name: string;
taxId: string;
address:{
country: string;
line1: string;
line2: string;
city: string;
postalCode: string;
}
};
//..only if you are submitting a self-billed invoice include invoice.sender with the suppliers information:
sender:{
name: string;
taxId: string;
address:{
country: string;
line1: string;
line2: string;
city: string;
postalCode: string;
}
};
paymentMeans: {
code?: string;
account: {
accountNumber?: string;
bic?: string;
bankName?: string;
}
};
customInfo: {
pol: {
localGovernmentSubordinate: boolean;
vatGroup: boolean;
purchaseOrderDate?:string;
shippingDate?: string;
serviceStartDate?: string;
serviceEndDate?: string;
cashAccounting?: boolean;
splitPayment?:boolean;
reverseCharge?:boolean;
}
};Name | Type | Required | Description |
|---|---|---|---|
| String (ISO 8601 date) | No | Due date of invoice |
| String | No | Reference number of the Purchase order |
| String | Yes | Acceptable tax codes include:
|
| String | Yes | Name of the recipient entity. |
| String | Yes | Tax ID or NIP of the recipient. Note: If the recipient entity does not have a tax identification number enter 0000000000 as a placeholder for eezi. |
| String | Yes | Country code of recipient. Three-letter country code (ISO 3166-1 alpha-3). |
| String | Yes | City/District/Suburb/Town/Village |
| String | Yes | Address line 1 (Street address/PO Box/Company name). |
| String | Yes | Address line 2 (Street address/PO Box/Company name). |
| String | Yes | ZIP or postal code. |
| String | No | Payment means type code. There are 7 values from an enumerated list as specified on Payment means code list options The means, expressed as code, for how a payment is expected to be or has been settled. |
| String | No | The full bank account number (to which the payment of the receivable resulting from the invoice was/will be made) is provided. |
| String | No | The name of the entity where the account to which the invoice payment was/will be made is held. |
| String | No | SWIFT Code. The identifier (in digits and letters) of the financial institution maintaining the foreign account is provided. |
| Boolean | Yes | Subordinate Local Government Unit flag. true: Transactions concerns a subordinate local government unit. |
| Boolean | Yes | Group VAT member flag. true: Transactions concerns a VAT Group. |
| String (ISO 8601 date) | No | Purchase order date. |
| String (ISO 8601 date) | No | The date of delivery or completion of the delivery of goods or services or the date of receipt of payment. |
| String (ISO 8601 date) | No | Start date of the period covered by the invoice. |
| String (ISO 8601 date) | No | End date of the period to which the invoice relates. |
| Boolean | No | Cash accounting flag. true: Cash accounting is applicable to the transaction. false: Cash accounting is not applicable to the transaction. |
| Boolean | No | Indicates that the supply of goods or services is subject to reverse charge, where the purchaser is liable to pay VAT or similar tax rather than the supplier. true: Reverse charge applies; the purchaser is responsible for paying VAT |
| Boolean | No | Indicates whether the invoice is subject to Poland's split payment mechanism, where the total amount exceeds PLN 15,000 or its foreign currency equivalent. true: Split payment applies |
Example CSV file
Updated 2 days ago