action stackexchange_get_me_inbox { label: "get_me_inbox" description: "Returns the user identified by access_token's inbox.\n \nThis method requires an access_token, with a scope containing \"read_inbox\".\n \nThis method returns a list of inbox items.\n" provider: stackexchange method: GET path: "/me/inbox" encoding: json input: { type: "object" properties: { callback: { type: "string" } filter: { type: "string" } page: { type: "integer" } pagesize: { type: "integer" } site: { type: "string" } } required: ["site"] additionalProperties: false } output: { type: "object" additionalProperties: true } }