## Delete protein sequence redesign run data

`$ boltz-api protein:sequence-redesign delete-data`

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

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

### Parameters

- `--id: string`

  Sequence redesign run ID

### Returns

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

  - `id: string`

    ID of the resource whose data was deleted

  - `data_deleted: true`

  - `data_deleted_at: string`

    When the data was deleted

### Example

```cli
boltz-api protein:sequence-redesign delete-data \
  --api-key 'My API Key' \
  --id id
```

#### Response

```json
{
  "id": "id",
  "data_deleted": true,
  "data_deleted_at": "2019-12-27T18:11:19.117Z"
}
```
