Skip to content
Merged
Show file tree
Hide file tree
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: 6 additions & 0 deletions EXAMPLES.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@ c8 get process-instance 2251799813685249

# Get process instance with variables
c8 get pi 2251799813685249 --variables

# Render process instance diagram as PNG
c8 get pi 2251799813685249 --diagram

# Save diagram to file
c8 get pi 2251799813685249 --diagram --output=./diagram.png
```

### Create Process Instance
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ c8ctl list pi # List process instances
c8ctl list pd # List process definitions
c8ctl get pi 123456 # Get process instance by key
c8ctl get pi 123456 --variables # Get process instance with variables
c8ctl get pi 123456 --diagram # Render process instance diagram as PNG
c8ctl get pi 123456 --diagram --output=./diagram.png # Save diagram to file
c8ctl get pd 123456 --xml # Get process definition as XML

# Create process instance
Expand Down