Merge · Schema
SalesOrderLine
# The SalesOrderLine Object ### Description The `SalesOrderLine` object represents a specific line item on a sales order. ### Usage Example Fetch from the `GET SalesOrder` endpoint and view a company's sales order line items.
IntegrationsPlatformUnified APIAgent HandlerLLM Gateway
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| remote_id | stringnull | The third-party API ID of the matching object. |
| created_at | string | The datetime that this object was created by Merge. |
| modified_at | string | The datetime that this object was modified by Merge. |
| description | stringnull | Description of the line item. |
| unit_price | stringnull | The unit price of the item. |
| quantity | stringnull | Quantity ordered for this line. |
| item | stringnull | |
| tax_rate | stringnull | The tax rate of the line item. |
| tracking_categories | array | The dimensions or classification tags. |
| company | stringnull | The subsidiary associated with the order. |
| remote_created_at | stringnull | When the third party's sales order line item was created. |
| remote_updated_at | stringnull | When the third party's sales order line item was updated. |
| remote_was_deleted | boolean | 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 cove |
| remote_fields | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SalesOrderLine",
"title": "SalesOrderLine",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"remote_id": {
"type": [
"string",
"null"
],
"description": "The third-party API ID of the matching object."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "The datetime that this object was created by Merge."
},
"modified_at": {
"type": "string",
"format": "date-time",
"description": "The datetime that this object was modified by Merge."
},
"description": {
"type": [
"string",
"null"
],
"description": "Description of the line item."
},
"unit_price": {
"type": [
"string",
"null"
],
"format": "decimal",
"description": "The unit price of the item."
},
"quantity": {
"type": [
"string",
"null"
],
"format": "decimal",
"description": "Quantity ordered for this line."
},
"item": {
"type": [
"string",
"null"
],
"format": "uuid"
},
"tax_rate": {
"type": [
"string",
"null"
],
"format": "uuid",
"description": "The tax rate of the line item."
},
"tracking_categories": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "The dimensions or classification tags."
},
"company": {
"type": [
"string",
"null"
],
"format": "uuid",
"description": "The subsidiary associated with the order."
},
"remote_created_at": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "When the third party's sales order line item was created."
},
"remote_updated_at": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "When the third party's sales order line item was updated."
},
"remote_was_deleted": {
"type": "boolean",
"description": "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](https://docs.merge.dev/integrations/hris/supported-features/)."
},
"remote_fields": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RemoteField"
}
}
},
"description": "# The SalesOrderLine Object\n### Description\nThe `SalesOrderLine` object represents a specific line item on a sales order.\n\n### Usage Example\nFetch from the `GET SalesOrder` endpoint and view a company's sales order line items."
}