action trashnothing_delete_post { label: "Delete a post" description: "Users can delete posts they have made that have been satisfied or withdrawn or that have expired. Deleting posts isn't intended to be a normal part of the posting process since it makes reposting and viewing old posts harder.\n" provider: trashnothing method: DELETE path: "/posts/{post_id}" encoding: json input: { type: "object" properties: { post_id: { type: "string" } } required: ["post_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }