action stackexchange_get_badges_recipients { label: "get_badges_recipients" description: "Returns recently awarded badges in the system.\n \nAs these badges have been awarded, they will have the badge.user property set.\n \nThis method returns a list of badges.\n" provider: stackexchange method: GET path: "/badges/recipients" encoding: json input: { type: "object" properties: { callback: { type: "string" } filter: { type: "string" } fromdate: { type: "integer" } page: { type: "integer" } pagesize: { type: "integer" } site: { type: "string" } todate: { type: "integer" } } required: ["site"] additionalProperties: false } output: { type: "object" additionalProperties: true } }