action trashnothing_share_post { label: "Share a post" description: "Forwards a copy of the post to the current user so that they can forward it to friends." provider: trashnothing method: POST path: "/posts/{post_id}/share" encoding: json input: { type: "object" properties: { post_id: { type: "string" } } required: ["post_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }