South Korea
Invoice
Changes to generic fields
type Invoice {
// ...all generic invoice fields
notes?: string;
lines: [
{
// ...other line item fields
customInfo?: {
kor?: {
purchaseDT?: string;
spec?: string;
note?: string;
};
};
}
];
recipient: {
// ...other recipient fields
customInfo?: {
kor?: {
type?: string;
taxRegID?: string;
representativeName?: string;
};
};
};
customInfo?: {
kor?: {
emailSubject?: string;
taxType?: string;
purposeType?: string;
serialNum?: string;
};
};
}South Korea-specific fields
| Name | Type | Required | Description |
|---|---|---|---|
notes | string | No | Any applicable or additional notes |
customInfo.kor.emailSubject | string | No | Title of the notification mail sent to the customer |
customInfo.kor.taxType | string | No | Tax type classification. Valid values: 과세 (taxable) 영세 (zero-rated) 면세 (exempted) |
customInfo.kor.purposeType | string | No | Payment status. Valid values: 영수 (received) 청구 (not received) 없음 (none) |
customInfo.kor.serialNum | string | No | Serial number for document management |
lines[].customInfo.kor.purchaseDT | string | No | Date of preparation or purchase. Format: yyyyMMdd |
lines[].customInfo.kor.spec | string | No | Specification of the line item |
lines[].customInfo.kor.note | string | No | Remark for the line item |
recipient.customInfo.kor.type | string | No | Buyer type. Valid values: 사업자 (company) 개인 (individual) 외국인 (foreigner) |
recipient.customInfo.kor.taxRegID | string | No | Identification number for minor place of business. 4 digits. |
recipient.customInfo.kor.representativeName | string | No | Name of the representative |