action stackexchange_get_users_id_notifications_unread { label: "get_users_id_notifications_unread" description: "Returns a user's unread notifications.\n \nThis method requires an access_token, with a scope containing \"read_inbox\".\n \nThis method returns a list of notifications.\n" provider: stackexchange method: GET path: "/users/{id}/notifications/unread" 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 } }