> ## Documentation Index
> Fetch the complete documentation index at: https://integrations.docs.commenda.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Fulfillments are the process of delivering products to customers. The Fulfillments Data Model simplifies the handling and retrieval of fulfillments-related information across various ecommerce platforms.

**The Fulfillments Data Model** simplifies the handling and retrieval of fulfillments-related information across various ecommerce platforms.

* Unified Fulfillments properties: The model provides a unified representation of fulfillments properties across different platforms, enabling you to easily access and manage fulfillments data from different platforms.
* Comprehensive fulfillments information: The model provides a comprehensive representation of fulfillments data, including all the properties and relationships that you can retrieve for an order.

## Attributes

## Properties Supported

| Property          | Type   | Description                                        |
| ----------------- | ------ | -------------------------------------------------- |
| platform\_id      | string | The Platform's ID for the fulfillments             |
| carrier\_name     | string | The name of the carrier used for the fulfillment   |
| tracking\_number  | string | The tracking number for the fulfillment            |
| delivery\_service | string | The delivery service used for the fulfillment      |
| tracking\_link    | string | The tracking link for the fulfillment              |
| created\_at       | string | The date and time the fulfillment was created      |
| updated\_at       | string | The date and time the fulfillment was last updated |

<ResponseExample name="The Fulfillments Object">
  ```json The Fulfillments Response Object theme={null}
  {
    "rootfi_id": 157,
    "rootfi_deleted_at": null,
    "rootfi_created_at": "2024-01-22T05:07:31.465Z",
    "rootfi_updated_at": "2024-01-22T05:07:31.000Z",
    "rootfi_company_id": 1089,
    "platform_id": "ful_123456",
    "platform_unique_id": "FUL-2024-001",
    "carrier_name": "USPS",
    "tracking_number": "9400111899223197428490",
    "delivery_service": "Priority Mail",
    "tracking_link": "https://tools.usps.com/go/TrackConfirmAction?tLabels=9400111899223197428490",
    "created_at": "2024-01-22T05:07:31.465Z",
    "updated_at": "2024-01-22T05:07:31.000Z"
  }
  ```
</ResponseExample>
