Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/content/docs/workers/wrangler/commands.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -789,13 +789,13 @@ wrangler workflows instances list <WORKFLOW_NAME> [OPTIONS]
Describe a specific instance of a Workflow, including its current status, any persisted state, and per-step outputs.

```sh
wrangler workflows instances describe <WORKFLOW_NAME> <ID> [OPTIONS]
wrangler workflows instances describe <WORKFLOW_NAME> [ID] [OPTIONS]
```

- `WORKFLOW_NAME` <Type text="string" /> <MetaInfo text="required" />
- The name of a registered Workflow.
- `ID` <Type text="string" /> <MetaInfo text="required" />
- The ID of a Workflow instance. You can optionally provide `latest` to refer to the most recently created instance of a Workflow.
- `ID` <Type text="string" /> <MetaInfo text="(default: latest) optional" />
- The ID of a Workflow instance. You can optionally provide `latest` to refer to the most recently created instance of a Workflow. Defaults to `latest` if no ID is provided.

<Render file="wrangler-commands/global-flags" product="workers" />

Expand Down
Loading