Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

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