# Delete

`DELETE /workspaces/:workspace/distributions/:distribution_id`

Delete a distribution

**Required Scopes:** `DISTRIBUTION_MANAGE`

## URL Parameters

```typescript
interface URLParameters {
  /** The human-readable ID of the workspace */
  workspace: string; // Example: "my-company"
  /** The ID of the distribution */
  distribution_id: string; // Example: "nZrnl40Y"
}
```

## Query Parameters

```typescript
interface QueryParameters {
  /** Project name to filter distributions */
  project_name?: string; // Example: "my-project"
  /** Environment ID to filter distributions */
  environment_id?: string; // Example: "3a4KbBQl"
}
```

## Response Example

**Status:** `204 Distribution deleted successfully`


---
Original source: https://buddy.works/docs/api/distributions/delete