# Image deletion in .NET v0.8.0 and TypeScript v0.5.0

July 21, 2026

The official .NET and TypeScript clients now support deleting images through the API:

*   Delete one image with `DeleteImageAsync` in .NET or `deleteImage` in TypeScript.
*   Delete multiple images in one request with `DeleteImageBatchAsync` in .NET or `deleteImageBatch` in TypeScript.

The .NET client’s `ApiResult<T>` now implements `IDisposable` because it owns the raw `HttpResponseMessage`. The raw response remains available when you need headers, the originating request, or other transport details. C# callers should use `using` or `using var` when reading API results.

[View the C# examples](/example-code/c/) or [TypeScript examples](/example-code/typescript/).

[All updates](/changelog/)

Previous: [Transparent backgrounds with one parameter](/changelog/2026-07-20-transparent-backgrounds-with-one-parameter/) — Jul 20, 2026

Next: [Store rendered images in your own bucket](/changelog/2026-07-27-store-rendered-images-in-your-own-bucket/) — Jul 27, 2026
