Skip to main content
DELETE
https://api.bland.ai
/
v1
/
guard_rails
/
{guard_rail_id}
Delete Guard Rail
curl --request DELETE \
  --url https://api.bland.ai/v1/guard_rails/{guard_rail_id}
{
  "data": null,
  "errors": [
    {
      "error": "NOT_FOUND",
      "message": "Guard rail not found"
    }
  ]
}
Deleting a guard rail will remove it from all attached sources (personas, pathways, inbound numbers). Calls using those sources will no longer be monitored by this guard rail.

Headers

authorization
string
required
Your API key for authentication.

Path Parameters

guard_rail_id
string
required
The unique identifier of the guard rail to delete.

Response

Returns a 204 No Content response on success.
{
  "data": null,
  "errors": [
    {
      "error": "NOT_FOUND",
      "message": "Guard rail not found"
    }
  ]
}