Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions Tax Exempt Quick Reference Guide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Tax Exempt Quick Reference Guide
When a vendor is launched in a tax-exempt eligible market, the ClassWallet team will need to enable their vendor account to begin receiving the tax status of users when a shopper starts a session from the ClassWallet Marketplace.

### Plugin Vendors (Shopify, WooCommerce, Magento, BigCommerce)

No action needed by plugin vendors. The plugins we have developed are listening for these tax-exempt flags and will action the order to be created without tax if tax-exempt user status is detected.

---

### API Vendors

Once enabled, we will begin sending a tax-exempt property in the JSON payload to your start URL to indicate the tax status of the user:

```json
"taxExempt": true

```

```json
"taxExempt": false

```

This should be parsed from the payload and used to create the order without tax if the user is `"taxExempt": true`.

> **Note:** Full payload examples are available in the API docs: [`PayByAPI.md`](https://github.com/devinlejeune-cw/classwallet-docs/blob/main/PayByAPI.md)

---

### cXML Vendors

Once enabled, we will include an `Extrinsic` tag in the `PunchOutSetupRequest`, as well as an `Extrinsic` tag with the Order Request in the `OrderRequestHeader` containing the tax status of the user:

```xml
<Extrinsic name="TaxExempt">false</Extrinsic>

```

```xml
<Extrinsic name="TaxExempt">true</Extrinsic>

```

These tags should be identified and used accordingly to create the order without taxes when `<Extrinsic name="TaxExempt">true</Extrinsic>` is detected.

> **Note:** Full document examples are provided in the cXML docs: [`cXML.md`](https://github.com/devinlejeune-cw/classwallet-docs/blob/main/cXML.md)
1 change: 1 addition & 0 deletions cXML.md
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,7 @@ Fernandez">vendorinvoices@classwallet.com</Email>
</Phone>
</Contact>
<Comments xml:lang="en-US" />
<Extrinsic name="TaxExempt">false</Extrinsic>
</OrderRequestHeader>
<ItemOut quantity="1" lineNumber="1">
<ItemID>
Expand Down