action stackexchange_get_badges_ids_recipients { label: "get_badges_ids_recipients" description: "Returns recently awarded badges in the system, constrained to a certain set of badges.\n \nAs these badges have been awarded, they will have the badge.user property set.\n \n{ids} can contain up to 100 semicolon delimited ids, to find ids programatically look for badge_id on badge objects.\n \nThis method returns a list of badges.\n" provider: stackexchange method: GET path: "/badges/{ids}/recipients" encoding: json input: { type: "object" properties: { callback: { type: "string" } filter: { type: "string" } fromdate: { type: "integer" } ids: { type: "string" } page: { type: "integer" } pagesize: { type: "integer" } site: { type: "string" } todate: { type: "integer" } } required: ["ids", "site"] additionalProperties: false } output: { type: "object" additionalProperties: true } }