Api / Todos

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

StatusWhen
401Missing / invalid bearer.
404Todo not found for this tenant.

See also