## Delete Saved Report

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

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

### Path Parameters

- `id: string`

### Returns

- `DeletedResponse object { id, deleted }`

  Generic response for delete operations.

  - `id: string`

    The ID of the deleted resource.

  - `deleted: true`

    Indicates the resource was successfully deleted.

    - `true`

### Example

```http
curl https://api.postgrid.com/print-mail/v1/reports/$ID \
    -X DELETE \
    -H "X-API-Key: $POSTGRID_PRINT_MAIL_API_KEY"
```

#### Response

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