## Delete a Q&A entry

**delete** `/v2/training_data/qna/{id}`

Removes a Q&A entry from the workspace and attempts search-index cleanup. Delete only entries your pipeline owns; a merged entry may have several contributing sources.

### Path Parameters

- `id: string`

  The Q&A entry ID

### Header Parameters

- `"Featurebase-Version": optional "2026-08-19.orbit" or "2026-01-01.nova" or "2025-12-12.clover"`

  - `"2026-08-19.orbit"`

  - `"2026-01-01.nova"`

  - `"2025-12-12.clover"`

### Returns

- `id: string`

  ID of the deleted Q&A entry

- `deleted: true`

  Indicates the resource was deleted

  - `true`

- `object: "qna"`

  Object type identifier

  - `"qna"`

### Example

```http
curl https://do.featurebase.app/v2/training_data/qna/$ID \
    -X DELETE \
    -H "Authorization: Bearer $FEATUREBASE_API_KEY"
```

#### Response

```json
{
  "id": "67ec1234abcd5678ef901235",
  "deleted": true,
  "object": "qna"
}
```
