Get workflow details

## Usage

`circleci workflow get <workflow-id> [flags]`

## Arguments

`<workflow-id>` is the UUID of the workflow to look up. Workflow IDs are
shown in the output of `circleci run get`.

## Flags

| Flag          | Description                                                                       |
| ------------- | --------------------------------------------------------------------------------- |
| `--jq string` | Process values from the response using jq syntax (see `circleci help formatting`) |
| `--json`      | Output as JSON                                                                    |

Global flags: `-c, --config`, `--debug`, `--no-color`, `-q, --quiet` — see `circleci --help`.

## Examples

- Get workflow details: 
  `circleci workflow get 5034460f-c7c4-4c43-9457-de07e2029e7b`
- Output as JSON: 
  `circleci workflow get 5034460f-c7c4-4c43-9457-de07e2029e7b --json`
- Get workflow ID from a run: 
  `circleci run get | grep -A1 "Workflows"`

## Details

Display the status and jobs of a CircleCI workflow.

Workflow IDs are shown in the output of 'circleci run get'.

JSON fields: id, name, phase, outcome, current_outcome, run_id, created_at, ended_at, jobs[].id/name/phase/outcome/current_outcome/type

