> ## Documentation Index
> Fetch the complete documentation index at: https://openrouter.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# BatchDeletedObject

Confirms a terminal batch was removed from the API and its OpenRouter-held artifacts purged. Deletion is not cancellation and does not erase billing or audit records.

## Example Usage

```typescript theme={null}
import { BatchDeletedObject } from "@openrouter/sdk/models";

let value: BatchDeletedObject = {
  deletion: {
    openrouter: "deleted",
  },
  id: "batch_abc123",
  object: "batch",
};
```

## Fields

| Field      | Type                                                                      | Required             | Description                                                                                | Example                                                                                                                   |
| ---------- | ------------------------------------------------------------------------- | -------------------- | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------- |
| `deletion` | [models.BatchDeletionTargets](../models/batchdeletiontargets.mdx)         | :heavy\_check\_mark: | OpenRouter cleanup and, when a provider was assigned, the upstream batch deletion outcome. | \{<br />"openrouter": "deleted",<br />"upstream": \{<br />"provider": "Anthropic",<br />"status": "deleted"<br />}<br />} |
| `id`       | *string*                                                                  | :heavy\_check\_mark: | N/A                                                                                        | batch\_abc123                                                                                                             |
| `object`   | [models.BatchDeletedObjectObject](../models/batchdeletedobjectobject.mdx) | :heavy\_check\_mark: | N/A                                                                                        |                                                                                                                           |
