# Delete Pipeline

```url
POST /api/v1/delete_pipeline
```

## **Request Body (JSON):**

```json
{
  "virtual_cluster_id": "vci_xxx",
  "pipeline_id": "pipeline-xyz",
}
```

### **CURL Example:**

```bash
curl https://api.warpstream.com/api/v1/delete_pipeline \
-H 'warpstream-api-key: XXXXXXXXXX' \
-H 'Content-Type: application/json' \
-X DELETE \
-d '{"virtual_cluster_id": "vci_xxx", "pipeline_id": "pipeline-xyz"}'
```

## **Response Body (JSON):**

```json
{
  // Empty JSON object (or a success status code)
}
```
