Supported Operations for Sage Intacct REST Tax Rates

List, Get operations available through our unified API

list
get
create
update
delete

Supported Fields

11 fields

Fields available for Sage Intacct REST Tax Rates

iddisplay_idnamecodedescriptioneffective_tax_ratetotal_tax_ratetax_payable_account_idtypereport_tax_typestatus

API Model Preview

Sample response structure for tax rates

{
  "id": "12345",
  "display_id": "12345",
  "name": "Example Name",
  "code": "CODE-001",
  "description": "Example Description",
  "effective_tax_rate": {
    "id": "12345"
  },
  "total_tax_rate": {
    "id": "12345"
  },
  "tax_payable_account_id": "12345",
  "type": "standard",
  "report_tax_type": "standard",
  "status": "active"
}

Quick Start Example

Start syncing Sage Intacct REST tax rates 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 rates from Sage Intacct REST
const result = await apideck.accounting.taxRates.list({
  serviceId: 'sage-intacct-rest'
})

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

Other Sage Intacct REST Data You Can Sync

Explore more Sage Intacct RESTresources available through Apideck's unified API

Sage Intacct REST SDKs

Build Sage Intacct REST integrations in your favorite language with our official SDKs.

Launch accounting integrations in weeks, not months

Get started for free