action stackexchange_get_users_id_reputation_history_full { label: "get_users_id_reputation_history_full" description: "Returns a user's full reputation history, including private events.\n \nThis method requires an access_token, with a scope containing \"private_info\".\n \nThis method returns a list of reputation_history.\n" provider: stackexchange method: GET path: "/users/{id}/reputation-history/full" 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 } }