AcumaticaTax

Acumatica Tax API

Sync permissioned tax data with Acumatica through Apideck's unified API. One integration, instant access to the governed data your team needs.

In Apideck, this resource is called Tax Rates (API: tax-rates)

Supported Operations for Acumatica Tax

List, Get operations available through our unified API

list
get
create
update
delete

Supported Fields

12 fields

Fields available for Acumatica Tax

iddescriptioneffective_tax_ratetotal_tax_ratetax_payable_account_idtax_remitted_account_idcomponentstypeoriginal_tax_rate_idupdated_atcreated_atcustom_fields

API Model Preview

Sample response structure for tax

{
  "id": "12345",
  "description": "Example Description",
  "effective_tax_rate": {
    "id": "12345"
  },
  "total_tax_rate": {
    "id": "12345"
  },
  "tax_payable_account_id": "12345",
  "tax_remitted_account_id": "12345",
  "components": "string",
  "type": "standard",
  "original_tax_rate_id": 100,
  "updated_at": "2024-01-15T10:30:00.000Z",
  "created_at": "2024-01-15T10:30:00.000Z",
  "custom_fields": [
    {
      "id": "12345",
      "name": "Custom Field",
      "value": "Custom Valu
  ...

Quick Start Example

Start syncing Acumatica tax in minutes

Node.js
import { Apideck } from '@apideck/unify'

const apideck = new Apideck({
  apiKey: process.env.APIDECK_API_KEY,
  appId: 'YOUR_APP_ID',
  consumerId: 'YOUR_CONSUMER_ID'
})

// List tax from Acumatica
const result = await apideck.accounting.taxRates.list({
  serviceId: 'acumatica'
})

for await (const page of result) {
  console.log(page)
}
// Returns unified tax data

Acumatica SDKs

Build Acumatica integrations in your favorite language with our official SDKs.

Launch accounting integrations in weeks, not months

Sign Up