> ## Documentation Index
> Fetch the complete documentation index at: https://dev.puppetvendors.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Fulfillment Events

> List all tracking events for a line item's fulfillment

<Note>
  **V2 Preview** — This endpoint is part of the V2 API preview. Breaking changes may occur.
</Note>

## Overview

List all tracking events for a line item's fulfillment. Vendor tokens can only access events on their own line items.

### Event Statuses

`in_transit` · `out_for_delivery` · `delivered` · `failed_delivery`

## Path Parameters

<ParamField path="lineItemId" type="string" required>
  Line item ObjectId.
</ParamField>

## Response

```json 200 theme={null}
{
  "success": true,
  "data": [
    {
      "_id": "507f1f77bcf86cd799439020",
      "lineItemId": "507f1f77bcf86cd799439015",
      "status": "in_transit",
      "happenedAt": "2026-04-15T08:30:00Z",
      "city": "Austin",
      "province": "TX",
      "country": "US",
      "message": "Package scanned at origin facility"
    }
  ]
}
```

## Example

```bash theme={null}
curl -X GET "https://staging-api.puppetvendors.com/fulfillments/events/507f1f77bcf86cd799439015" \
  -H "x-access-token: YOUR_VENDOR_JWT"
```
