In case you missed the announcement: Alteryx One is here, and so is the Spring Release! Learn more about these new and exciting releases here!

Alteryx Server Discussions

Find answers, ask questions, and share expertise about Alteryx Server.
SOLVED

Delete ex-employee (owner) workflows from server

HomesickSurfer
12 - Quasar

Hello

 

How can ex-employee (owner) workflows be deleted from the server, if at all possible?

eg.  'Bob' is no longer employed at our company.  Bob was owner of the assets published to the server.  We would like to 'delete' Bob's assets.

 

Thank you for your attention and assistance.

2 REPLIES 2
DataNath
17 - Castor
17 - Castor

Hey @HomesickSurfer, one option would be to use the server API - use an initial call with the GET {baseURL}/v3/users/{userId}/assets endpoint, specifying workflows, and then another call using DELETE {baseURL}/v3/workflows/{workflowId} to action it.

 

Documentation here: https://help.alteryx.com/current/en/server/api-overview/alteryx-server-api-v3/server-api-v3-objects....

HomesickSurfer
12 - Quasar

Thank you @DataNath