Supported Operations for NetSuite Invoices

Full CRUD support available through our unified API

list
get
create
update
delete

Supported Fields

20 fields

Fields available for NetSuite Invoices

idtypenumbercustomercompany_idinvoice_datedue_datestatuscurrencycurrency_ratesub_totaltotal_taxtotalline_itemsbilling_address+5 more

API Model Preview

Sample response structure for invoices

{
  "id": "12345",
  "type": "standard",
  "number": 10,
  "customer": {
    "id": "12345",
    "display_id": "CUST-001",
    "display_name": "Acme Corp",
    "company_name": "Acme Corporation"
  },
  "company_id": "12345",
  "invoice_date": "2024-01-15",
  "due_date": "2024-01-15",
  "status": "active",
  "currency": "USD",
  "currency_rate": 100,
  "sub_total": 100,
  "total_tax": 100,
  "total": 100,
  "line_items": [
    {
      "id": "12345",
      "row_id": "12345",
      "description": "P
  ...

Quick Start Example

Start syncing NetSuite invoices 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 invoices from NetSuite
const result = await apideck.accounting.invoices.list({
  serviceId: 'netsuite'
})

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

Other NetSuite Data You Can Sync

Explore more NetSuiteresources available through Apideck's unified API

Launch accounting integrations in weeks, not months

Get started for free