action stackexchange_get_me_comments_to_id { label: "get_me_comments_toId" description: "Returns the comments owned by the user associated with the given access_token that are in reply to the user identified by {toId}.\n \nThis method returns a list of comments.\n" provider: stackexchange method: GET path: "/me/comments/{toId}" encoding: json input: { type: "object" properties: { callback: { type: "string" } filter: { type: "string" } fromdate: { type: "integer" } 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"] } toId: { type: "integer" } todate: { type: "integer" } } required: ["site", "toId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }