camunda / rpa-runtime

Zeebe Task worker for RobotFramework integration
Other
0 stars 0 forks source link

Add ability to return files to the process #4

Open marstamm opened 1 month ago

marstamm commented 1 month ago

What should we do?

Add the option to return files to the Process:

Set Output File   {variable_name}   {file_path}

Why should we do it?

To better integrate RPA results with the camunda.

Example docs

Creating Files (integrates document handling)

To save a file for use outside of the worker,use the keyword Set Output File. This will upload the file to Camunda’s document store and make the file reference available as an output variable.

Syntax:

Set Output File   {variable_name}   {file_path}

Parameters:

Example:

Set Output File   invoiceDocument   /path/to/invoice.pdf

This command uploads the file located at /path/to/invoice.pdf and makes it available as a file reference in the invoiceDocument output variable.