Nigeria
Credit note
Changes to generic fields
lines[].itemCodeis requiredrecipient.address.line1is required.recipient.address.cityis required.recipient.address.stateis required.recipient.address.countryis required.recipient.address.postalCodeis required.
type CreditNote {
// ...all generic credit note fields
invoiceRefs: string[],
lines: [
{
// ..other line item fields
itemCode: string;
hsn: strng;
vat: {
code: string;
exemptReason?: string;
}
}
];
recipient: {
// ...everything from creditNote.recipient,
contact: {
email?: string;
}
}
};
Field information
| Name | Type | Required | Description |
|---|---|---|---|
invoiceRefs | string | Yes | An array of existing invoices |
lines[].itemCode | string | Yes | Product unique identifier (e.g., barcode) |
lines[].hsn | string | Yes | Code used to classify traded products systematically for customs and taxation purposes |
lines[].vat.code | string | Yes | A value from an enumerated list as specified on Nigeria VAT code list |
lines[].vat.exemptReason | string | Conditional | If the line VAT amount is 0, an exemption reason is required. |
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). |
recipient.address.postalCode | string | Yes | ZIP or postal code |
recipient.contact.email | string | No | Email address of recipient |
Example CSV file
Updated 5 days ago