Product Tax Codes

Product Tax Codes are used in Taxability mapping.

The product_tax_code is a field that you can add to your requests for US transactions.

The list of values for this field is available from Vertex. For example, 310206 is used for a digital book download.

The following is an example transaction that specifies this field:

{
  "transaction": {
    "buyer_credit_card_prefix": "",
    "buyer_name": "John Smith",
    "currency_code": "USD",
    "invoice_address": {
      "country": "US",
      "postal_code": "90232",
      "region": "California"
    },
    "transaction_lines": [
      {
        "custom_id": "1",
        "description": "Digital Book Download",
        "product_tax_code": "310206",
        "amount": "100"
      }
    ],
    "buyer_tax_number": "",
    "status": "C",
    "buyer_ip": "",
    "billing_country_code": "US",
  }
}