> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blobhub.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Stop Execution

Stop a running execution.

## **POST** `/revisions/:id/data/command` (Command: `stop_execution`)

### Request Body

| Parameter      | Type   | Required | Description                 |
| :------------- | :----- | :------- | :-------------------------- |
| `engine`       | string | Yes      | Must be `workflow_blobhub`. |
| `command`      | string | Yes      | Must be `stop_execution`.   |
| `execution_id` | string | Yes      | The ID of the execution.    |

### Response

Returns an empty JSON object upon success.

### Example

<CodeGroup>
  ```json Request theme={null}
  {
    "engine": "workflow_blobhub",
    "command": "stop_execution",
    "execution_id": "exec_001"
  }
  ```

  ```json Response theme={null}
  {}
  ```
</CodeGroup>
