# Equipment Tracking

The **Equipment Tracking** webhook provides notifications when payment terminals are shipped to merchants. This webhook delivers detailed shipping information for each terminal device, including tracking numbers.

### Payload Structure Example

The webhook delivers a JSON payload with the following structure:

{% code lineNumbers="true" %}

```json
{
  "event": "Shipped",
  "merchantId": "88880000000123456",
  "orderId": "999990000000987654",
  "payload": {
    "terminals": [
      {
        "name": "Survey Name",
        "trackingNumber": "1Z81T8T20299581550",
        "deviceType": "VP3300 (Bluetooth)",
        "terminalId": 1111,
        "storeNumber": 1111
      }
    ]
  }
}
```

{% endcode %}

### Field Reference <a href="#field-reference" id="field-reference"></a>

<table><thead><tr><th width="305">Field</th><th>Description</th></tr></thead><tbody><tr><td><code>event</code></td><td>Identifies the webhook event type ("Shipped")</td></tr><tr><td><code>merchantId</code></td><td>Unique identifier for the merchant receiving the equipment</td></tr><tr><td><code>orderId</code></td><td>Unique identifier for the equipment order</td></tr><tr><td><code>payload.terminals</code></td><td>Array of terminal devices included in the shipment</td></tr><tr><td><code>payload.terminals[].name</code></td><td>Display name or description of the terminal</td></tr><tr><td><code>payload.terminals[].trackingNumber</code></td><td>Shipping tracking number</td></tr><tr><td><code>payload.terminals[].deviceType</code></td><td>Model and connection type of the terminal</td></tr><tr><td><code>payload.terminals[].terminalId</code></td><td>Unique identifier for the terminal device</td></tr><tr><td><code>payload.terminals[].storeNumber</code></td><td>Store location identifier where the terminal will be deployed</td></tr></tbody></table>
