## Delete Data

`$ boltz-api protein:design delete-data`

**post** `/compute/v1/protein/design/{id}/delete-data`

Permanently delete the input, output, and result data associated with this design run. The design run record itself is retained with a `data_deleted_at` timestamp. This action is irreversible.

### Parameters

- `--id: string`

  Design run ID

### Returns

- `ProteinDesignDeleteDataResponse: object { id, data_deleted, data_deleted_at }`

  - `id: string`

    ID of the resource whose data was deleted

  - `data_deleted: true`

    - `true`

  - `data_deleted_at: string`

    When the data was deleted

### Example

```cli
boltz-api protein:design delete-data \
  --id id
```
