FreeAgent
Price List Items

FreeAgent Price List Items API

Sync price list items data with FreeAgent through Apideck's unified API. One integration, instant access.

In Apideck, this resource is called Invoice Items (API: invoice-items)

Supported Operations for FreeAgent Price List Items

List, Create, Get operations available through our unified API

list
get
create
update
delete

Supported Fields

10 fields

Fields available for FreeAgent Price List Items

idnamedescriptioncodetypesales_detailsquantityunit_pricecreated_byupdated_at

API Model Preview

Sample response structure for price list items

{
  "id": "12345",
  "name": "Example Name",
  "description": "Example Description",
  "code": "CODE-001",
  "type": "standard",
  "sales_details": "string",
  "quantity": 100,
  "unit_price": 100,
  "created_by": {
    "id": "12345",
    "name": "John Doe",
    "email": "john.doe@example.com"
  },
  "updated_at": "2024-01-15T10:30:00.000Z"
}

Quick Start Example

Start syncing FreeAgent price list items 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 price list items from FreeAgent
const result = await apideck.accounting.invoiceItems.list({
  serviceId: 'freeagent'
})

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

FreeAgent SDKs

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

Launch accounting integrations in weeks, not months

Sign Up