Taiwan
Additional considerations for Taiwan
Invoice cancellation
Taiwan does not support Credit notes in the traditional sense, and the calls will act more like invoice cancellations (C0503) for full credit or allowance (D0403) for partial credit. Therefore, a cancellation reason needs to be sent along with the generic credit note fields.
Changes to generic fields
invoiceRefsis requiredcustomInfo.twn.isAllowanceis requiredcustomInfo.twn.reasonis required.
type CreditNote {
// ...all generic credit note fields
recipient: {
// ...everything from invoice.recipient
contact: {
email?: string;
}
}
lines: [
{
// ..other line item fields
vat: {
code: string;
}
}
];
customInfo: {
twn: {
reason: string;
isAllowance: boolean;
}
}
}Field information
| Name | Type | Required | Description |
|---|---|---|---|
lines[].vat.code | string | Conditional | A value from an enumerated list as specified on Taiwan VAT code list |
customInfo.twn.reason | string | Yes | Reason for cancellation. |
customInfo.twn.isAllowance | boolean | Yes | Indicate whether credit note is an allowance or cancelation. |
recipient.contact.email | string | Conditional | Email of the recipient. Required for cross-border transactions |
Example CSV file
Example of a cross border credit note allowance.
Updated 5 days ago