# Delete a Note

`DELETE /api/notes/{id}`



- **Group:** Notes
- **Since:** v3.0.0
- **Authentication:** `authtoken` header, created under Setup > API > API Management
- **HTML version:** /apiguide/notes/delete-note/

## Headers

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `authtoken` | String | **required** | Authentication token, generated from admin area |

## Example request

```bash
curl -X DELETE "https://yoursite.com/api/notes/123" \
  -H "authtoken: YOUR_API_TOKEN"
```

## Success response

### Success-Response:

```json
HTTP/1.1 200 OK
{
    "status": true,
    "message": "Note deleted successfully"
}
```

## Error responses

### Not-Found:

```json
HTTP/1.1 404 Not Found
{
    "status": false,
    "message": "Note not found"
}
```

---

Perfex CRM REST API by Themesic Interactive. Full reference: /apiguide/
