action stackexchange_post_comments_id_edit { label: "post_comments_id_edit" description: "Edit an existing comment.\n \nUse an access_token with write_access to edit an existing comment.\n \nThis method return the created comment.\n" provider: stackexchange method: POST path: "/comments/{id}/edit" 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 } }