> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://buildwithfern.com/learn/llms.txt.

# Delete Guidance By Id

DELETE https://fai.buildwithfern.com/guidance/{domain}/{guidance_id}

Reference: https://fern.docs.buildwithfern.com/learn/docs/ai-features/ask-fern/api-reference/guidance/delete-guidance-by-id

## Authentication

- `Authorization` header (bearer token, required)

## Servers

- `https://fai.buildwithfern.com` (Production, default)
- `https://fai-dev.buildwithfern.com` (Development)
- `http://localhost:8080` (Local)

## Request

### Path parameters

- `domain` (string, required)
- `guidance_id` (string, required)

## Response

### 200

Successful Response

- `success` (boolean, required) — Whether the guidance document was successfully deleted

## Examples

**Response**

```json
{
  "success": true
}
```