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

# Get Outbound Shipment

> Retrieve a single outbound shipment

Returns a single outbound shipment by ID.

**Permission:** `outbound_shipments:read`

## Path parameters

<ParamField path="id" type="string" required>
  The outbound shipment ID
</ParamField>

## Response

```json theme={null}
{
  "data": {
    "id": "ship_out_abc123",
    "fboAccountId": "fbo_abc123",
    "organizationId": "org_abc123",
    "status": "shipped",
    "shippedAt": 1747044000000,
    "createdAt": "2025-05-11T16:00:00Z"
  }
}
```
