action stackexchange_get_answers_ids_comments { label: "get_answers_ids_comments" description: "Gets the comments on a set of answers.\n \nIf you know that you have an answer id and need the comments, use this method. If you know you have a question id, use /questions/{id}/comments. If you are unsure, use /posts/{id}/comments.\n \n{ids} can contain up to 100 semicolon delimited ids, to find ids programatically look for answer_id on answer objects.\n \nThe sorts accepted by this method operate on the follow fields of the comment object:\n - creation - creation_date\n - votes - score\n creation is the default sort.\n \n It is possible to create moderately complex queries using sort, min, max, fromdate, and todate.\n\n \nThis method returns a list of comments.\n" provider: stackexchange method: GET path: "/answers/{ids}/comments" encoding: json input: { type: "object" properties: { callback: { type: "string" } filter: { type: "string" } fromdate: { type: "integer" } ids: { type: "string" } max: { type: "string" } min: { type: "string" } order: { type: "string" enum: ["desc", "asc"] } page: { type: "integer" } pagesize: { type: "integer" } site: { type: "string" } sort: { type: "string" enum: ["creation", "votes"] } todate: { type: "integer" } } required: ["ids", "site"] additionalProperties: false } output: { type: "object" additionalProperties: true } }