Merge · Schema
ItemFulfillmentLine
# The ItemFulfillmentLine Object ### Description The `ItemFulfillmentLine` object represents the specific quantity of a particular product or service that has actually been shipped or delivered against its corresponding order line. ### Usage Example Fetch from the `GET ItemFulfillment` endpoint and view a company's item fulfillment lines.
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. |
| item | stringnull | |
| sales_order_line | stringnull | |
| quantity | stringnull | The amount of item being delivered. |
| tracking_categories | array | The dimensions or classification tags. |
| remote_created_at | stringnull | When the third party's item fulfillment line item was created. |
| remote_updated_at | stringnull | When the third party's item fulfillment 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/ItemFulfillmentLine",
"title": "ItemFulfillmentLine",
"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."
},
"item": {
"type": [
"string",
"null"
],
"format": "uuid"
},
"sales_order_line": {
"type": [
"string",
"null"
],
"format": "uuid"
},
"quantity": {
"type": [
"string",
"null"
],
"format": "decimal",
"description": "The amount of item being delivered."
},
"tracking_categories": {
"type": "array",
"items": {
"type": "string",
"format": "uuid"
},
"description": "The dimensions or classification tags."
},
"remote_created_at": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "When the third party's item fulfillment line item was created."
},
"remote_updated_at": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "When the third party's item fulfillment 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 ItemFulfillmentLine Object\n### Description\nThe `ItemFulfillmentLine` object represents the specific quantity of a particular product or service that has actually been shipped or delivered against its corresponding order line.\n\n### Usage Example\nFetch from the `GET ItemFulfillment` endpoint and view a company's item fulfillment lines."
}