Use this endpoint to stop a Workflow process in the folder within the Explorer module.
Use the POST method with the /process/stop/
endpoint. After the stop/
, type the name of the folder path and the name of the workflow separated with the "/".
/process/stop/
Parameters
Parameter | Type | Description | Example |
{path} | string | The path to the workflow file in Explorer. | ImportsandExports |
{name_of_workflow} | string | The name of the workflow file in Explorer. | ModelExport |
Curl example
In this example, we use the API request to stop the ModelExport
workflow that is found in the ImportsandExport/Data
folder in Explorer.
curl --location POST 'https://fluenceapi-prod.fluence.app/api/v2305.1/process/start/ImportsandExports/ModelExport \
--header 'TENANT: CustomerTenant' \
--header 'X-API-TOKEN: 73ca5973-ce3e-4cc6-b2d4-b09a99770ccf
This request generates a 200 OK
response if successful.