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 |
|---|---|---|---|
| string | No | Any applicable or additional notes |
| string | No | Title of the notification mail sent to the customer |
| string | No | Tax type classification. Valid values: |
| string | No | Payment status. Valid values: |
| string | No | Serial number for document management |
| string | No | Date of preparation or purchase. Format: |
| string | No | Specification of the line item |
| string | No | Remark for the line item |
| string | No | Buyer type. Valid values: |
| string | No | Identification number for minor place of business. 4 digits. |
| string | No | Name of the representative |
Updated about 5 hours ago