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

# Delete Provider

Soft deletes a provider. The provider is marked as deleted but not permanently removed from the database (for audit purposes).

## Path Parameters

<ParamField path="id" type="string" required>
  Provider ID
</ParamField>

## Response

<ResponseField name="status" type="string">
  Response status ("success")
</ResponseField>

<ResponseField name="message" type="string">
  Success message
</ResponseField>

<ResponseField name="data" type="null">
  null
</ResponseField>

## Example Response

```json theme={null}
{
  "status": "success",
  "message": "Provider deleted successfully",
  "data": null
}
```

## Notes

* This is a soft delete - the provider is not permanently removed
* Deleted providers cannot be retrieved via GET endpoints
* Collections referencing deleted providers will still work
