Workday
Transaction Tax Codes

Workday Transaction Tax Codes API

Sync transaction tax codes data with Workday through Apideck's unified API. One integration, instant access.

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

Supported Operations for Workday Transaction Tax Codes

List, Create, Get, Update operations available through our unified API

list
get
create
update
delete

Supported Fields

6 fields

Fields available for Workday Transaction Tax Codes

iddisplay_idnamecodecountrycomponents

API Model Preview

Sample response structure for transaction tax codes

{
  "id": "12345",
  "display_id": "12345",
  "name": "Example Name",
  "code": "CODE-001",
  "country": 10,
  "components": "string"
}

Quick Start Example

Start syncing Workday transaction tax codes 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 transaction tax codes from Workday
const result = await apideck.accounting.taxRates.list({
  serviceId: 'workday'
})

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

Workday SDKs

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

Launch accounting integrations in weeks, not months

Sign Up