Merge · Schema

ItemFulfillmentLineRequest

# 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
remote_id stringnull The third-party API ID of the matching object.
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.
integration_params objectnull
linked_account_params objectnull
remote_fields array
View JSON Schema on GitHub

JSON Schema

merge-itemfulfillmentlinerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ItemFulfillmentLineRequest",
  "title": "ItemFulfillmentLineRequest",
  "type": "object",
  "properties": {
    "remote_id": {
      "type": [
        "string",
        "null"
      ],
      "description": "The third-party API ID of the matching object."
    },
    "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."
    },
    "integration_params": {
      "type": [
        "object",
        "null"
      ],
      "additionalProperties": {
        "description": "Any type"
      }
    },
    "linked_account_params": {
      "type": [
        "object",
        "null"
      ],
      "additionalProperties": {
        "description": "Any type"
      }
    },
    "remote_fields": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/RemoteFieldRequest"
      }
    }
  },
  "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."
}