action stackexchange_get_me_questions { label: "get_me_questions" description: "Returns the questions owned by the user associated with the given access_token.\n \nThis method returns a list of questions.\n" provider: stackexchange method: GET path: "/me/questions" 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 } }