India
Invoice
Changes to generic fields
recipient.address.address.line1is required.recipient.address.address.line2is required.recipient.address.cityis required.recipient.address.stateis required.recipient.address.postalCodeis required.
type Invoice {
// ...all generic invoice fields
recipient: RecipientIND;
lines: InvoiceLineIND[];
discount?: {
type: DiscountTypeIND;
value: string;
};
restrictions?: InvoiceRestrictionsIND;
purchaseOrder?: {
number: string;
issued: string;
linesIncluded?: number;
identityCode?: string;
};
customInfo: {
ind: {
supplyType: SupplyType;
recipientRepresentativeGSTIN: string;
recipientRepresentativeName: string;
recipientStateCode: string;
docNumber?: string;
};
}
type RecipientIND {
// ...everything from Recipient
code?: string;
identityNumber?: string;
email?: string;
mobile?: string;
address: AddressIND;
representative?: TaxRepresentativeIND;
}
type AddressIND {
// ...everything from Address
postalCode: string;
}
type TaxRepresentativeIND {
taxId?: string;
phone?: string;
email?: string;
}
type InvoiceLineIND {
// ...everting from InvoiceLine
serialNumber?: string;
service: string;
hsnCode: string;
unit: string;
}
type DiscountTypeIND =
// Standard Manufacturer
'SM' |
// Manufacturer's Goods
'MG';
type InvoiceRestrictionsIND {
article73: boolean;
}
type SupplyType =
// Business to Business
'B2B' |
// Business to Consumer
'B2C' |
// Export with Payment of Tax
'EXPWP' |
// Export without Payment of Tax
'EXPWOP' |
// Supply to SEZ with Payment of Tax
'SEZWP' |
// Supply to SEZ without Payment of Tax
'SEZWOP' |
// Deemed Export
'DEXP';Field information
Name | Type | Required | Description |
|---|---|---|---|
| string | Yes | Sequential number of document, max 16 characters |
| string | No | Destination code for delivering - 7 characters (not necessary when ID number of recipient is included) |
| string | No | ID number for delivering |
| string | No | The customer's email address |
| string | No | The customer's mobile number |
| string | Yes | Address line 1 (Street address/PO Box/Company name). |
| string | Yes | Address line 2 (Apartment/Suite/Unit/Building). |
| string | Yes | City/District/Suburb/Town/Village. |
| string | Yes | State/County/Province/Region. |
| string | Yes | ZIP or postal code |
| string | No | Taxpayer ID of tax representative |
| string | No | Company phone of tax representative |
| string | No | Company email of tax representative |
| string | No | Serial number of the item |
| string | Yes | Specify whether the line item is a service or not.
|
| string | Yes | To enter applicable HSN / SAC Code of Goods / Service |
| string | Yes | To enter applicable HSN / SAC Code of Goods / Service |
| string | No | One of 'SM' | 'MG' |
| string | No | Discount amount |
| boolean | No | Restrictions that apply to MCK invoices |
| string | No | Number of the purchase order associated with the invoice |
| string | No | Date of purchase order that led to invoice |
| number | No | Number of lines from purchase order which are included in invoice (unless all are included) |
| string | No | Identity code of the item from the purchase order contained in the invoice |
| string | Yes | This will be the code to identify type of supply. B2B: Business to Business, B2C: Business to Consumer, SEZWP: To SEZ with Payment, SEZWOP: To SEZ without Payment, EXPWP: Export with Payment, EXPWOP: Export without Payment, DEXP: Deemed Export |
| string | Yes | GSTIN of the Recipient, if available. URP: In case of exports or if supplies are made to unregistered persons |
| string | Yes | Company name of tax representative |
| string | Yes | Recipient State Code. |
| string | No | Sequential number of document |
Example CSV file
Updated 5 days ago