This section details optional additional address properties potentially required by certain carriers. You will also find code block samples with properties for Port of Entry and Importer of Record.
Address properties in this section are required in semi-structure format. If you choose to specify this object, some fields are mandatory.
Table 20. Additional Address Properties
|
Property Name |
Type |
Manda- tory? |
Description |
|---|---|---|---|
|
|
|
0 = Billing Address, 4 = Requested Service point, 5 = importer of record (SOLD to). |
|
|
|
|
||
|
|
|
||
|
|
|
City, if known. |
|
|
|
|
The |
|
|
|
|
2nd line of address. |
|
|
|
|
Type 1 equals business and Type 2 equals residential. |
|
|
|
|
State province if known. |
|
|
|
|
Company name. |
|
|
|
|
The VAT registration number of the Import of Record. |
|
|
|
|
The IOSS is the electronic portal that online sellers outside the EU can use to calculate and collect VAT from their customers at an online checkout and declare and pay it directly to EU tax authorities. Although using the IOSS is not mandatory, it might be the most convenient way to manage this new VAT obligation. |
|
|
|
|
EORI stands for “Economic Operators Registration and Identification”. An EORI number is mandatory for customs clearance in the customs territory of the European Union. That relates to all types of customs operations, such as export, import, and transit. |
|
|
|
|
Email address |
|
|
|
|
Phone number |
|
|
|
|
Name |
For example:
...
<addresses soapenc:arrayType="ns1:ArrayOf_tns1_SemiStructuredAddress[1]" xsi:type="soapenc:Array">
<addresses xsi:type="ns1:ArrayOf_tns1_SemiStructuredAddress">
<addressKeyId>0</addressKeyId>
<addressLine1>line1</addressLine1>
<postCode>Gu34 2LZ</postCode>
<city>London</city>
<countryCode>GBR</countryCode>
<addressLine2>line2</addressLine2>
<type>2</type>
<stateProvince>Greater London</stateProvince>
<companyName>Metapack</companyName>
<name>Lorem Ipsum</name>
<phone>07412345678</phone>
<email>help@metapack.com</email>
</addresses>
</addresses>
...
Here is a code sample to add an additional address for Importer of Record:
<addresses soapenc:arrayType="ns1:ArrayOf_tns1_SemiStructuredAddress[1]" xsi:type="soapenc:Array">
<addresses xsi:type="ns1:ArrayOf_tns1_SemiStructuredAddress">
<addressKeyId>5</addressKeyId>
<addressLine1>Buckingham palace</addressLine1>
<addressLine2>line2</addressLine2>
<postCode>EC1R 4PF</postCode>
<city>London</city>
<countryCode>GBR</countryCode>
<type>2</type>
<stateProvince>Greater London</stateProvince>
<CompanyName>Metapack</companyName>
<name>Lorem Ipsum</name>
<phone>07412345678</phone>
<email>help@metapack.com</email>
<EORINumber>GB123456789</EORINumber>
<IOSSNumber>IM0123456789</IOSSNumber>
<VATNumber>GB99999973C</VATNumber>
</addresses>
</addresses>
Here is a code sample to add an additional address for Port of Entry:
<addresses soapenc:arrayType="ns1:ArrayOf_tns1_SemiStructuredAddress[1]" xsi:type="soapenc:Array">
<addresses xsi:type="ns1:ArrayOf_tns1_SemiStructuredAddress">
<addressKeyId>6</addressKeyId>
<addressLine1Downing Street</addressLine1>
<addressLine2>London</addressLine2>
<postCode>EC1R 4PF</postCode>
<city>London</city>
<countryCode>GBR</countryCode>
<type>2</type>
<stateProvince>Greater London</stateProvince>
<CompanyName>Metapack</companyName>
<name>Lorem Ipsum</name>
<phone>074123456711</phone>
<email>help@metapack.com</email>
<EORINumber>GB123456789</EORINumber>
<IOSSNumber>IM0123456789</IOSSNumber>
<VATNumber>GB99999973C</VATNumber>
</addresses>
</addresses>