For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
Resources
Log inGet a demo
Get startedAPI referenceImplementation
Get startedAPI referenceImplementation
    • Overview
          • The Item object
          • GET/items
          • POST/items
          • GET/items/{id}
          • PATCH/items/{id}
          • GET/items/meta/patch/{id}
          • GET/items/meta/post

Get started

  • Overview
  • Introduction
  • Unified API
  • Linked Account
  • Merge Link
  • Use cases

Implementation

  • Sandboxes
  • SDKs
  • API access
  • Syncing data
  • Writing data
  • Data minimization
  • Supplemental data
  • Errors
  • Integration metadata

API reference

  • ATS
  • HRIS
  • Accounting
  • Ticketing
  • CRM
  • File Storage
  • Knowledge Base
  • Chat

Resources

  • Help Center
  • Merge.dev
  • Changelog
© Merge 2026Terms of usePrivacy policy
UnifiedAgent HandlerGateway
UnifiedAgent HandlerGateway
Resources
Log inGet a demo
Common ModelsItems

The Item object

The Item Object
1{
2 "id": "string",
3 "remote_id": "string",
4 "created_at": "2023-01-01T00:00:00Z",
5 "modified_at": "2023-01-01T00:00:00Z",
6 "name": "string",
7 "status": "ACTIVE",
8 "type": "INVENTORY",
9 "unit_price": 1,
10 "purchase_price": 1,
11 "purchase_account": "string",
12 "sales_account": "string",
13 "company": "string",
14 "purchase_tax_rate": "string",
15 "sales_tax_rate": "string",
16 "remote_updated_at": "2023-01-01T00:00:00Z",
17 "remote_was_deleted": true,
18 "field_mappings": {
19 "organization_defined_targets": {
20 "string": {}
21 },
22 "linked_account_defined_targets": {
23 "string": {}
24 }
25 },
26 "remote_data": [
27 {
28 "path": "string",
29 "data": {}
30 }
31 ]
32}
Was this page helpful?
Previous

/item-fulfillments/bulk/{batch_id}

Next

/items

The Item object refers to the goods involved in a transaction.

idstringOptionalRead-onlyformat: "uuid"
remote_idstring or nullOptional

The third-party API ID of the matching object.

created_atdatetimeOptionalRead-only
The datetime that this object was created by Merge.
modified_atdatetimeOptionalRead-only
The datetime that this object was modified by Merge.
namestring or nullOptional
The item's name.
statusenum or nullOptional
The item's status.
Allowed values:
typeenum or nullOptional
The item's type.
Allowed values:
unit_pricedouble or nullOptional
The item's unit price.
purchase_pricedouble or nullOptional
The price at which the item is purchased from a vendor.
purchase_accountstring or nullOptionalformat: "uuid"
References the default account used to record a purchase of the item.
sales_accountstring or nullOptionalformat: "uuid"
References the default account used to record a sale.
companystring or nullOptionalformat: "uuid"
The company the item belongs to.
purchase_tax_ratestring or nullOptionalformat: "uuid"
The default purchase tax rate for this item.
sales_tax_ratestring or nullOptionalformat: "uuid"
The default sales tax rate for this item.
remote_updated_atdatetime or nullOptional
When the third party's item note was updated.
remote_was_deletedbooleanOptionalRead-only

Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. Learn more.

field_mappingsobject or nullOptionalRead-only
remote_datalist of objects or nullOptionalRead-only