Hello, when we delete a GoodData workspace via the...
# gooddata-cloud
j
Hello, when we delete a GoodData workspace via the API, does that also automatically delete that workspace's automations?
k
Thinking completed The knowledge sources do not explicitly confirm whether deleting a workspace via the API automatically deletes all of that workspace's automations. The documentation does state that deleting a workspace (via
DELETE /api/v1/entities/workspaces/{id}
) deletes the workspace along with its content, including its logical and analytics models [Delete a Workspace; delete_workspace]. However, it does not explicitly detail the cascade behavior regarding automations. If you want to ensure automations are removed before deleting a workspace, you can manage or delete them explicitly using: • The bulk action endpoint:
POST /api/v1/actions/workspaces/{workspaceId}/automations/delete
[deleteWorkspaceAutomations] • The single automation deletion endpoint:
DELETE /api/v1/entities/workspaces/{workspaceId}/automations/{objectId}
[delete_entity_automations] šŸ‘ 0 button šŸ‘Ž 0 button ā„¹ļø Tip: Mention @kapa.ai in the thread for follow-ups. šŸ‘€ Our Support team monitors all messages and will jump in if needed.
y
Hi Jill, As the AI Assistant explains, deleting a workspace via
DELETE /api/v1/entities/workspaces/{id}
permanently deletes the workspace and all of its contents, including its logical and analytics models. This means that deleting the workspace will also remove any resources contained within it, such as dashboards and automations.
j
thank you!