Workday
Bank Accounts

Workday Bank Accounts API

Sync bank accounts data with Workday through Apideck's unified API. One integration, instant access.

Supported Operations for Workday Bank Accounts

List, Get operations available through our unified API

list
get
create
update
delete

Supported Fields

13 fields

Fields available for Workday Bank Accounts

iddisplay_idnameaccount_numberbank_namecurrencybalancerouting_numberibanbicbranch_identifiercountrystatus

API Model Preview

Sample response structure for bank accounts

{
  "id": "12345",
  "display_id": "12345",
  "name": "Example Name",
  "account_number": 10,
  "bank_name": "Example Bank Name",
  "currency": "USD",
  "balance": 100,
  "routing_number": 10,
  "iban": "string",
  "bic": "string",
  "branch_identifier": "12345",
  "country": 10,
  "status": "active"
}

Quick Start Example

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

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

Workday SDKs

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

Launch accounting integrations in weeks, not months

Sign Up