DELETE/v1/todos/:id
Auth: tenant — Status: stable
Hard-delete a todo. Use PATCH with status: "canceled" to keep the row in the archive instead.
Request
curl -X DELETE \
-H "Authorization: Bearer atr_…" \
http://arbiter.example.com/v1/todos/14
Response
200 OK
{ "deleted": true }
Failure modes
| Status | When |
|---|---|
| 401 | Missing / invalid bearer. |
| 404 | Todo not found for this tenant. |
See also
PATCH/v1/todos/:id— soft-archive viastatus: "canceled"instead.- Todos concept