# diagrid workflow archive print

Print the decoded workflow history from an archive file

### Description

Print the workflow execution history from an archive file as JSON or YAML.

Each event is decoded from its signed raw bytes (the source of truth), so the
output reflects exactly what was recorded. This command does not verify
signatures — use "diagrid workflow archive verify" for that.

```
diagrid workflow archive print <archive-file> [flags]
```

### Examples

```

  # Print the history as JSON
  diagrid workflow archive print wf-123.json

  # Print the history as YAML
  diagrid workflow archive print wf-123.json -o yaml

  # Read the archive from stdin
  cat wf-123.json | diagrid workflow archive print -

```

### Options

```
  -o, --output string   Output format: json or yaml (default "json")
  -h, --help            help for print
```

### Options inherited from parent commands

```
      --api-key string   Diagrid Cloud API key
```

### SEE ALSO

- [diagrid workflow archive](./archive.md)	 - Work with workflow history archives
