Overview

Commenda uses tax transactions to calculate the seller’s tax obligations for filings and nexus tracking. In cases where sellers ave been selling in various US states prior to onboarding to Commenda, some retroactive analysis will be necessary for accurate nexus status evaluation.

Usage

Files will be uploaded through a POST to the transactions/bulk endpoint. They must be exactly the correct format, and are limited to 15 MB.

Error Handling

Default behavior is to load valid rows, and return an array detailing which rows were unable to be loaded, with the error associated with the row.

CSV Format

Files must be uploaded in CSV format, with the headers specified in our bulk uploads template.

Column HeaderRequiredFormatDescription
corporation_idtruestring (UUID)The ID of the corporation whose transactions are being uploaded
process_codetrueProcess CodeA code indicating the process being performed
transaction_typetrueTransaction TypeA code indicating the type of transaction
invoice_numbertruestringA unique ID for this invoice
transacted_attrueISO-8601 date stringThe date on which the transaction occurred, or the date on which tax liability should be recognized.
line_numberfalsenumberIf this is an invoice with multiple lines, this line number will be used to uniquely identify individual lines of the invoice. Commenda will populate this value if it is not passed in.
price_per_unitfalsenumber >= 0Price per unit of the product sold on this line item.
quantityfalsenumber >= 0Number of units of product sold on this line item.
discountfalsenumber >= 0Discount applied to this line item. Handle invoice-level discounts by distributing them evenly across line items.
item_shippingfalsenumber >= 0Line-item-level shipping cost.
item_handlingfalsenumber >= 0Line-item-level handling cost.
item_taxfalsenumber >= 0Tax collected on this line item. Will be used for filing.
tax_includedtruebooleanWhether the pricing of this product is intended to be tax-inclusive.
product_idfalsestring (UUID)The ID of the sold product in Commenda’s platform.
product_skufalsestringA unique string used by the seller to identify the product being sold.
product_taxability_codefalseProduct Taxability CodeA code used to identify the type of product being sold, and whether the product is taxable in the destination jurisdiction. Defaults to TPP if not set.
customer_idfalsestring (UUID)The ID of the purchasing customer in Commenda’s platform.
source_platformfalseSource PlatformA code indicating the integration via which the transaction entered Commenda’s system. This is not meant to indicate the platform on which the transaction took place.
source_platform_idfalsestringThe unique ID for this transaction or invoice in the source platform. This field should only be used for integrations.
exemption_reasonfalseExemption ReasonDuring import, this field can be used to indicate that the transaction is tax-exempt because the purchaser is exempt.
exemption_certificate_idfalsestring (UUID)ID in Commenda of the exemption certificate that’s linked to this transaction. Used to mark a transaction as exempt.
currency_codetrueISO-4217 currency stringCurrency in which the transaction took place.
ship_from_address_line_1falsestringAddress from which the shipment originated.
ship_from_address_line_2falsestringAddress from which the shipment originated.
ship_from_address_line_3falsestringAddress from which the shipment originated.
ship_from_cityfalsestringAddress from which the shipment originated.
ship_from_state_codefalseISO-3166-2 jurisdiction string valid in the origin countryAddress from which the shipment originated.
ship_from_zipfalsestring (Valid postal code in origin country)Address from which the shipment originated.
ship_from_country_codefalseISO-3166 Country StringAddress from which the shipment originated.
ship_to_address_line_1falsestringAddress to which the product is shipped or where the service is delivered.
ship_to_address_line_2falsestringAddress to which the product is shipped or where the service is delivered.
ship_to_address_line_3falsestringAddress to which the product is shipped or where the service is delivered.
ship_to_cityfalsestringAddress to which the product is shipped or where the service is delivered.
ship_to_state_codetrueISO-3166-2 jurisdiction string valid in the destination countryAddress to which the product is shipped or where the service is delivered.
ship_to_ziptruestring (Valid postal code in destination country)Address to which the product is shipped or where the service is delivered.
ship_to_country_codetrueISO-3166 Country StringAddress to which the product is shipped or where the service is delivered.

Process Code

Indicates which operation is being performed (create transaction, update transaction, calculate tax, etc). Currently only transaction create is supported.

Currently only INSERT_TRANSACTION is supported.

Transaction Type Code

The type of transaction that occurred. Currently, SALE and REFUND are supported.

  • SALE transactions will be used for nexus calculations and for filing.
  • By default, tax withheld on REFUND transactions will be credited against future SALE transactions in the same jurisdiction. For any different tax treatment, please contact the Commenda team.

Source Platform

The method by which the transaction entered Commenda’s system.

Currently the following options are supported: BUSY, HUBSPOT, MEKARI_JURNAL, MS_DYNAMICS_365, MYOB_BUSINESS, NETSUITE, ODOO_ACCOUNTING, PAYPAL, PIPEDRIVE, QOYOD, QUICKBOOKS, QUICKBOOKS_SANDBOX, RAZORPAY, ROOTFI_SANDBOX, SAGE_CLOUD_ACCOUNTING, SAGE_ZA_CLOUD_ACCOUNTING, SHOPIFY, STRIPE, TALLY, WAFEQ, WAVE, WOOCOMMERCE, XERO, ZOHO_BOOKS, ZOHO_CRM.

Exemption Reason

Reason why a purchaser is exempt from sales tax. Used to manually specify that a transaction is exempt because its purchaser is exempt.

When this field is set, the transaction will not be considered for nexus tracking or for filings.

Currently the following options are supported: PURPOSE_RESALE, ENTITY_TYPE_NONPROFIT, GOVERNMENT, MANUFACTURER, AGRICULTURAL, OTHER.