/users/{id}/reputation
Summary
Gets information on reputation changes for a set of users.Parameters
id
- A single primary key identifier or a vectorized, semicolon-delimited list of identifiers.
- string
fromdate (optional)
- Unix timestamp of the minimum creation date on a returned item.
- unix epoch date, range [0, 253,402,300,799]
jsonp (optional)
- Just so we can serialize it for caching purposes
- string
page (optional)
- The pagination offset for the current collection. Affected by the specified pagesize.
- 32-bit signed integer
pagesize (optional)
- The number of collection results to display during pagination. Should be between 0 and 100 inclusive.
- 32-bit signed integer
todate (optional)
- Unix timestamp of the maximum creation date on a returned item.
- unix epoch date, range [0, 253,402,300,799]
Returns
{
"total": {
"description": "total number of items in this sequence",
"values": "32-bit integer, range [0, 2,147,483,647]",
"optional": false
},
"page": {
"description": "page of the total collection returned",
"values": "32-bit integer, range [1, 2,147,483,647]",
"optional": false
},
"pagesize": {
"description": "size of each page returned from the collection",
"values": "32-bit integer, range [0, 100]",
"optional": false
},
"rep_changes": [
{
"user_id": {
"description": "user this rep_change affects",
"values": "32-bit signed integer",
"optional": false
},
"post_id": {
"description": "post this rep_change is from",
"values": "32-bit signed integer",
"optional": false
},
"post_type": {
"description": "type of post; one of question or answer",
"values": "one of question, or answer",
"optional": false
},
"title": {
"description": "title of the question the post either is or is on",
"values": "string",
"optional": false,
"suggested_buffer_size": 200
},
"positive_rep": {
"description": "amount of rep gained",
"values": "32-bit signed integer",
"optional": false
},
"negative_rep": {
"description": "amount of rep lost",
"values": "32-bit signed integer",
"optional": false
},
"on_date": {
"description": "when this rep was gained and/or lost",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": false
}
}
]
}