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

# deleteSellersWorkflow

> Delete sellers by id.

Soft-deletes the given sellers. Emits `seller.deleted` for each id.

## Usage

```ts theme={null}
import { deleteSellersWorkflow } from "@mercurjs/core/workflows"

await deleteSellersWorkflow(container).run({
  input: { ids: ["sel_123"] },
})
```

## Input

<ParamField body="ids" type="string[]" required>Ids of the sellers to delete.</ParamField>

## Result

<ResponseField name="result" type="void">Nothing is returned.</ResponseField>
