action stackexchange_get_privileges { label: "get_privileges" description: "Returns the earnable privileges on a site.\n \nPrivileges define abilities a user can earn (via reputation) on any Stack Exchange site.\n \nWhile fairly stable, over time they do change. New ones are introduced with new features, and the reputation requirements change as a site matures.\n \nThis method returns a list of privileges.\n" provider: stackexchange method: GET path: "/privileges" 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 } }