action discourse_delete_post { label: "delete a single post" provider: discourse method: DELETE path: "/posts/{id}.json" encoding: json input: { type: "object" properties: { force_destroy: { type: "boolean" description: "The `SiteSetting.can_permanently_delete` needs to be\nenabled first before this param can be used. Also this endpoint\nneeds to be called first without `force_destroy` and then followed\nup with a second call 5 minutes later with `force_destroy` to\npermanently delete." } id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }