You can delete the permissions of a workflow by using the Orchestrator REST API. You can delete the existing permissions of a workflow before you set new permissions.

1

Make a GET request and retrieve the ID of the workflow from the list of returned workflows:

GET http://{vcoHost}:{port}/api/workflows/
2

Make a DELETE request at the URL of the workflow's permissions:

DELETE http://{vcoHost}:{port}/api/workflows/{workflowID}/permissions/

If the DELETE request is successful, you receive the status code 204, and the response body is empty.