action stackexchange_get_users_id_inbox { label: "get_users_id_inbox" description: "Returns a user's inbox.\n \nThis method requires an access_token, with a scope containing \"read_inbox\".\n \nThis method is effectively an alias for /inbox. It is provided for consumers who make strong assumptions about operating within the context of a single site rather than the Stack Exchange network as a whole.\n \n{id} can contain a single id, to find it programatically look for user_id on user or shallow_user objects.\n \nThis method returns a list of inbox items.\n" provider: stackexchange method: GET path: "/users/{id}/inbox" encoding: json input: { type: "object" properties: { callback: { type: "string" } filter: { type: "string" } id: { type: "integer" } page: { type: "integer" } pagesize: { type: "integer" } site: { type: "string" } } required: ["id", "site"] additionalProperties: false } output: { type: "object" additionalProperties: true } }