Saudi Arabia
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;
vat: {
code: TaxCode;
exemptReason?: string;
exemptReasonCode?: RomaniaExemptionReasonCodes;
}
}
];
recipient: {
// ...everything from invoice.recipient,
},
customInfo?: {
sau?: {
translate?: boolean;
paymentMeans:{
code: PaymentMeansCode;
note: string;
}
}
}
};
Field information
Name | Type | Required | Description |
|---|---|---|---|
| string | Yes | An array of existing invoices |
| string | Yes | Unique line item code |
| string | Yes | A value from an enumerated list of types: |
| string | Conditional | If the line VAT amount is 0, an exemption reason is required. |
| string | Conditional | A value from an enumerated list outlined in the Saudi Arabia exempt reason codes |
| string | Yes | Address line 1 (Street address/PO Box/Company name). |
| string | Yes | City/District/Suburb/Town/Village |
| string | Yes | State/County/Province/Region |
| string | Yes | Three-letter country code (ISO 3166-1 alpha-3 ). |
| string | Yes | ZIP or postal code |
| boolean | No | Translates invoice to Arabic |
| string | Yes | A value from an enumerated list as outlined on Payment Means. |
| string | Yes | Document note |
Example CSV file
Updated 5 days ago