Fulfillments

The fulfillments object contains information such as their order ID, line items, etc.

{
  id: "00000000-0000-0000-0000-000000000000",
  remoteId: "4329041952826",
  carrier: "UPS"
  trackingUrls: [],
  orderId: "00000000-0000-0000-0000-000000000000",
  lineItems: [
    {
      quantity: 1,
      productId: "4463469396026",
      lineItemId: "4823524737082",
      price: "2000.00",
      variantId: "31587393372218",
      title: "Headphones",
      sku: ""
    }
  ],
  trackingNumbers: [],
  remoteCreatedAt: "2023-11-19T17:00:17.000Z",
  remoteUpdatedAt: "2023-11-19T17:00:17.000Z",
  remoteDeleted: false,
  createdAt: "2024-02-22T11:17:53.264Z",
  updatedAt: "2024-02-22T13:54:03.445Z"
}

Properties


idString

The unique identifier for the fulfillment.


remoteIdString

The ID of the object in the third-party application.


carrierString

Carrier company, ex "USPS", "Fedex", "UPS", "Canada Post", etc. Can be any string.


orderIdString

The unique identifier for the fulfillment's order.


trackingUrlsString[]

An array of tracking URLs associated with the fulfillment.


trackingNumbersString[]

An array of tracking numbers associated with the fulfillment.


lineItemsObject[]

An array of line items associated with the fulfillment.


remoteCreatedAtDateTime

The exact date and time when the record was first added or created in the third-party application.


remoteUpdatedAtDateTime

The latest date and time when any modifications or updates were made to the record's details in the third-party application.


remoteDeletedBoolean

Flag to indicate that the record has been deleted in the third-party application.


createdAtDateTime

Date and time the record has been synced into the data cache.


updatedAtDateTime

Date and time the record has been updated in the data cache.


### Fulfillment Line Item Object


quantityNumber

The quantity of the line item.


productIdString

The unique identifier for the product.


lineItemIdString

The unique identifier for the line item.


priceString

The price of the line item.


variantIdString

The unique identifier for the product variant.


titleString

The title or name of the line item.


skuString

The SKU (stock-keeping unit) of the line item.