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

# Delete Block Rule

> Permanently delete a block rule.

### Headers

<ParamField header="authorization" type="string" required>
  Your API key for authentication.
</ParamField>

### Path Parameters

<ParamField path="block_id" type="number" required>
  The unique ID of the block rule to delete.
</ParamField>

### Response

<ResponseField name="data" type="object">
  Confirmation message and ID of the deleted rule.
</ResponseField>

<ResponseField name="data.message" type="string">
  Success message indicating the block rule was deleted.
</ResponseField>

<ResponseField name="data.deleted_block_id" type="number">
  The ID of the block rule that was removed.
</ResponseField>

<ResponseField name="errors" type="null|array">
  `null` on success, or a list of error objects if the rule was not found or deletion failed.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "data": {
      "message": "Block rule deleted successfully",
      "deleted_block_id": 123
    },
    "errors": null
  }
  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
