# Delete Workflow

> Delete a workflow from your workspace

- **URL**: https://orshot.com/docs/api-reference/workflow-delete

---

## Overview

Delete a workflow. Its run history is kept, but the workflow stops triggering and disappears from your dashboard.```markdown tab="Endpoint"
https://api.orshot.com/v1/workflows/:id
```## Path Parameters

| Parameter | Type    | Required | Description                   |
| --------- | ------- | -------- | ----------------------------- |
| `id`      | Integer | Yes      | The unique ID of the workflow |

## Request```js
await fetch("https://api.orshot.com/v1/workflows/44", {
  method: "DELETE",
  headers: {
    Authorization: "Bearer <ORSHOT_API_KEY>",
  },
});
```</Tab>```json
{
  "ok": true
}
```</Tab>
</Tabs>

## Error Responses

### Workflow Not Found (404)```json
{
  "error": "Not found"
}
```## Rate Limits

- 60 requests per minute per workspace