DELETE/v1/lessons/:id
Auth: tenant — Status: stable
Hard-delete a lesson. There's no archive — once deleted, it won't surface in pre-turn injection or search. Recreate the row to bring it back.
curl -X DELETE \
-H "Authorization: Bearer atr_…" \
http://arbiter.example.com/v1/lessons/14
Response
200 OK
{ "deleted": true }
Failure modes
| Status | When |
|---|---|
| 401 | Missing / invalid bearer. |
| 404 | Lesson not found for this tenant. |