# Delete file

`DELETE /workspaces/:workspace/projects/:project_name/pipelines/:pipeline_id/files/:path`

Deletes a file from the pipeline filesystem

**Required Scopes:** `EXECUTION_MANAGE`

## URL Parameters

```typescript
interface URLParameters {
  /** The human-readable ID of the workspace */
  workspace: string; // Example: "my-company"
  /** The human-readable ID of the project */
  project_name: string; // Example: "my-project"
  /** The ID of the pipeline */
  pipeline_id: number; // Example: 123
  /** The path of the file in the pipeline filesystem */
  path: string; // Example: "app/docs/report.pdf"
}
```

## Response Example

**Status:** `204 File deleted successfully`


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