Party Schema
Represents an exporter, importer, or notify party.
Fields
| Field | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Company or individual name |
address | string | Yes | Street address |
city | string | Yes | City |
state | string | No | State/province |
postal_code | string | No | Postal/ZIP code |
country | string | Yes | ISO 3166-1 alpha-2 country code |
tax_ids | object | No | Tax identification numbers (see below) |
contact_email | string | No | Email address |
contact_phone | string | No | Phone number |
Tax IDs
| Field | Type | Description |
|---|---|---|
ein | string | US Employer Identification Number (XX-XXXXXXX) |
eori | string | EU/UK Economic Operators Registration (XX + up to 15 chars) |
iec | string | India Importer Exporter Code (10 alphanumeric) |
gstin | string | India GST Identification Number (15 alphanumeric) |
vat | string | EU VAT Number (country-specific) |
pan | string | India Permanent Account Number (AAAAA9999A) |
tin | string | Generic Tax Identification Number |
abn | string | Australian Business Number (11 digits) |
Example
{
"name": "Acme Corp",
"address": "123 Export Street",
"city": "Los Angeles",
"state": "CA",
"postal_code": "90001",
"country": "US",
"tax_ids": {
"ein": "12-3456789"
},
"contact_email": "export@acme.com",
"contact_phone": "+1-555-0100"
}