# Delete

`DELETE /workspaces/:workspace/projects/:project_name/visual-tests/suites/:suite_id`

Delete a visual test suite

**Required Scopes:** `VISUAL_TEST_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 visual test suite */
  suite_id: string; // Example: "MNbyVedg"
}
```

## Response Example

**Status:** `204 Visual test suite deleted successfully`


---
Original source: https://buddy.works/docs/api/visual-tests/suites/delete