# Workflow Actions

Workflow actions are a way to programmatically interact with the uploader, given you the option to use your own elements and design.

### Reset Uploader

Resets the uploader by clearing all files from the upload collection.

**Usage:**

* Call this action when you need to clear all files from the uploader
* Useful for resetting the uploader state after a successful upload or when starting a new upload session

### Remove File From Uploader&#x20;

Removes a specific file from the uploader collection.

**Usage:**

* Call this action when you need to remove a specific file from the uploader

### Open Uploader

Opens the uploader interface.

**Usage:**

* Call this action when you want to show the uploader interface
* Useful for programmatically triggering the uploader dialog
* Can be used in response to a button click or other user interaction

### Close Uploader

Closes the uploader interface.

**Usage:**

* Call this action when you want to hide the uploader interface
* Useful for programmatically closing the uploader dialog
* Can be used after a successful upload or when canceling the upload process
