action stackexchange_get_users_id_privileges { label: "get_users_id_privileges" description: "Returns the privileges a user has.\n \nApplications are encouraged to calculate privileges themselves, without repeated queries to this method. A simple check against the results returned by /privileges and user.user_type would be sufficient.\n \n{id} can contain only a single, to find it programatically look for user_id on user or shallow_user objects.\n \nThis method returns a list of privileges.\n" provider: stackexchange method: GET path: "/users/{id}/privileges" 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 } }