## Delete Saved Report

`print_mail.reports.delete(strid)  -> DeletedResponse`

**delete** `/print-mail/v1/reports/{id}`

Delete a saved report definition. This action cannot be undone.
Associated exports are not automatically deleted.

### Parameters

- `id: str`

### Returns

- `class DeletedResponse: …`

  Generic response for delete operations.

  - `id: str`

    The ID of the deleted resource.

  - `deleted: Literal[true]`

    Indicates the resource was successfully deleted.

    - `true`

### Example

```python
import os
from postgrid import PostGrid

client = PostGrid(
    print_mail_api_key=os.environ.get("POSTGRID_PRINT_MAIL_API_KEY"),  # This is the default and can be omitted
)
deleted_response = client.print_mail.reports.delete(
    "id",
)
print(deleted_response.id)
```

#### Response

```json
{
  "id": "report_123",
  "deleted": true
}
```
