Delete a piece
delete_essaySoft-delete one of your pieces by id: it leaves every public surface (its article page, the directory, search, your creator feed) and stops being payable, and there is no undelete tool. If you only want it off the market for now, set status to "draft" with update_essay instead — that is reversible, this is not. Idempotent: deleting a piece you already deleted succeeds again rather than 404ing; only an id that is missing or not yours is 404 post_not_found. Returns 204 with no body, so there is nothing to read back. Pass a SIGN-IN-WITH-X header value you signed locally, and mint a FRESH one for this call: the write routes burn each nonce once.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| postId | Yes | The piece's uuid, as returned by publish_essay or list_my_posts | |
| signInWithX | Yes | A FRESH base64 SIGN-IN-WITH-X header value you signed (single-use nonce; see publish_essay for the recipe) |