action stackexchange_get_me_answers { label: "get_me_answers" description: "Returns the answers owned by the user associated with the given access_token.\n \nThis method returns a list of answers.\n" provider: stackexchange method: GET path: "/me/answers" 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: ["activity", "creation", "votes"] } todate: { type: "integer" } } required: ["site"] additionalProperties: false } output: { type: "object" additionalProperties: true } }