Exemption Certification

Certificates facilitate exemptions that may change the applicable tax for transactions in the United States of America (USA).

The service includes the customer_id field that you can use to pass your Customer Code (that is associated with an exemption certificate) to Vertex Cloud Indirect Tax, triggering the exemption.

To integrate these components with Vertex Advantage, you need to add the customer-id field to your requests. This value is mapped to the exemption certificate record in Oseries. You can use this field with the Store Transaction request.

The following is an example of a Store Transaction request:

 '{
      "transaction": {
          "transaction_lines": [
              {
                  "customer-id": "my_certificate"
                  "custom_id": "line1",
                  "amount": 100
              }
          ],
          "buyer_ip": "109.121.15.46",
          "currency_code": "EUR",
          "billing_country_code": "BE",
          "buyer_credit_card_prefix": "424242424"
      },
      "private_token": "priv_***********"
  }' \