# Delete

`DELETE /workspaces/:workspace/artifacts/:artifact_Id`

Delete a artifact

**Required Scopes:** `ARTIFACT_MANAGE`

## URL Parameters

```typescript
interface URLParameters {
  /** The human-readable ID of the workspace */
  workspace: string; // Example: "my-company"
  /** The Artifact ID */
  artifact_Id: string; // Example: "x5169jL2"
}
```

## Response Example

**Status:** `204 Artifact deleted successfully`


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