Project-MONAI / monai-deploy

MONAI Deploy aims to become the de-facto standard for developing, packaging, testing, deploying and running medical AI applications in clinical production.
Apache License 2.0
98 stars 22 forks source link

Remove deployed workflow definition from MONAI Deploy Workflow Manager #146

Closed SameerShanbhogue closed 10 months ago

SameerShanbhogue commented 10 months ago

Hi

Is there a way to remove deployed workflow definition from MONAI Deploy Workflow Manager.? like using curl --request DELETE

mocsharp commented 10 months ago

Yes.

First, get a list of all installed workflows

curl --location 'http://localhost:[port]/workflows'

Find the workflow_id that you want to delete with the following API call:

curl --location --request DELETE 'http://localhost:[port]/workflows/[workflow_id]'
SameerShanbhogue commented 10 months ago

@mocsharp Thanks, it works.

mocsharp commented 10 months ago

Closing as resolved.