action stackexchange_post_posts_id_comments_add { label: "post_posts_id_comments_add" description: "Create a new comment.\n \nUse an access_token with write_access to create a new comment on a post.\n \nThis method returns the created comment.\n" provider: stackexchange method: POST path: "/posts/{id}/comments/add" encoding: json input: { type: "object" properties: { body: { type: "string" } callback: { type: "string" } filter: { type: "string" } id: { type: "integer" } preview: { type: "boolean" } site: { type: "string" } } required: ["id", "site"] additionalProperties: false } output: { type: "object" additionalProperties: true } }