Add VAT ID to a Packing Slip

ShipStation does not currently have a dedicated field replacement for a Value Added Tax (VAT) ID number. To include your VAT ID on your packing slip, you will need to manually edit your packing slip's HTML to add this value.

New to International Shipping?

Learn about VAT IDs and more in our Tax Identification Numbers (TIN) article. You can also learn why VAT Registration Numbers are required to use ShipStation.

This example adds the VAT ID field to the default packing slip Order Header, under the Order Date.

VAT ID number highlighted by red box on example packing slip.

However, you can add this information wherever you like in the Order Header or Order Footer sections of your packing slip. To access the Packing Slip Template so you can make edits, do the following:

  1. Select Templates > > Packing Slips from the side-navigation bar.

    Settings Sidebar: Templates dropdown. Red box highlights Packing Slips option.
  2. Locate the Packing Slip you want to update and click Edit to open the Edit Packing Slip Template popup.

    SET_Template_PackSlip_Edit_MRK.png
  3. Locate the following section of code:

    <tr>
        <td align="right" class="label">
            Date
        </td>
        <td>
            [Order Date]
        </td>
    </tr>
  4. Add the following snippet of HTML underneath the closing </tr> tag ( Replace `your vat id` with your actual VAT ID number) :

    <tr>
        <td align="right" class="label">VAT ID</td>
        <td>your vat id</td>
    </tr>
    SET_Template_EditPackSlip_VATIDCode__1_.gif

    Your HTML should now look like this:

    Packing Slip HTML: Vat ID highlighted in the Order Header section.
  5. Save your template.

Repeat these steps for any template that requires the VAT ID.

Avoid Duplicating Taxed Amount

If your selling channel already includes VAT at either the item or order level, the Sales Tax field imported into ShipStation could be duplicating the taxed amount, causing the order total to be higher than it should be on a packing slip. This is due to the order total including the taxes paid field in its total.

To compensate for this, use the field replacement [Amount paid] instead of [Order total] in the footer section of the packing slip.