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

# Deployment history

> Inspect the latest ship outcome and historical Edge Compute function deployments.

Edge Compute exposes both the latest ship outcome and the history of previous ships.

## Latest ship outcome

```bash theme={null}
telnyx-edge ship status my-func
telnyx-edge ship status my-func --logs
```

`ship status` reports whether the latest ship succeeded, is still building, or failed. A failure is classified by stage, including build, deploy, platform, pre-build, or security review, and includes a customer-facing reason. `--logs` prints the platform-provided snippet when one is available.

The customer-facing API for this view is `GET /v2/compute/funcs/{id}/ship_inspection`.

## Deployment history

```bash theme={null}
telnyx-edge deployments my-func
telnyx-edge deployments my-func --json
```

`deployments` shows one row per ship, newest first: when it was shipped, who shipped it, how it ended, build duration, the active revision, and — for failed ships — the failure stage and reason reported by the platform.

Each failed ship keeps its own failure reason. A build that fails before producing an image has no revision id and is not a rollback target.

The deployment-history API is `GET /v2/compute/funcs/{id}/revisions`. See the [API Reference](/docs/edge-compute/observability/api-reference).

For rollback behavior, see [Versions and rollback](/docs/edge-compute/configuration/versions).
