I’m using the Gamma Generate API to automatically create presentations from my own system. Right now, the API allows me to: create content with POST /generations check status and get the URL with GET /generations/{generationId} For my use case it’s very important that I can also delete specific presentations created via the API, without deleting my entire Gamma account. Why a DELETE endpoint would be helpful: I need to clean up presentations when a project or assignment is finished. I need to remove specific items for privacy and data management reasons when users request it. Manually deleting many API-generated presentations in the UI doesn’t scale. What I’d love to see: An officially supported DELETE endpoint (for example DELETE /v1.0/generations/{generationId}) that works with the existing API key, or another API-based way to remove or schedule deletion of individual items created through the API. This would make it much easier to use Gamma in workflows where privacy and document lifecycle management are important.