/revisions/{id}
Summary
Gets the post history revisions for a set of posts in 'id'.Parameters
id
- A single primary key identifier or a vectorized, semicolon-delimited list of identifiers.
- string
fromdate (optional)
- start date to list revisions from
- unix epoch date, range [0, 253,402,300,799]
jsonp (optional)
- string
todate (optional)
- date to stop listing revisions at
- unix epoch date, range [0, 253,402,300,799]
Returns
{
"revisions": [
{
"body": {
"description": "body of the revision",
"values": "string",
"optional": true,
"suggested_buffer_size": 30000
},
"comment": {
"description": "comment on the revision",
"values": "string",
"optional": false,
"suggested_buffer_size": 400
},
"creation_date": {
"description": "when the revision occurred",
"values": "unix epoch date, range [0, 253,402,300,799]",
"optional": false
},
"is_question": {
"description": "if the post is a question",
"values": "boolean",
"optional": false
},
"is_rollback": {
"description": "if the revision is a rollback",
"values": "boolean",
"optional": false
},
"last_body": {
"description": "the previous body",
"values": "string",
"optional": true,
"suggested_buffer_size": 30000
},
"last_title": {
"description": "the previous title",
"values": "string",
"optional": true,
"suggested_buffer_size": 200
},
"last_tags": [
{
"values": "string"
}
],
"revision_guid": {
"description": "the id of the revision",
"values": "guid, 8-4-4-4-12 format",
"optional": false
},
"revision_number": {
"description": "the revision number",
"values": "32-bit signed integer",
"optional": true
},
"tags": [
{
"values": "string"
}
],
"title": {
"description": "the title of the revision",
"values": "string",
"optional": true,
"suggested_buffer_size": 200
},
"revision_type": {
"description": "the revision type",
"values": "one of single_user, or vote_based",
"optional": false
},
"set_community_wiki": {
"description": "if this revision set the post to community wiki",
"values": "boolean",
"optional": false
},
"user": {
"user_id": {
"description": "id of the user",
"values": "32-bit signed integer",
"optional": false
},
"user_type": {
"description": "type of the user",
"values": "one of , anonymous, unregistered, registered, or moderator",
"optional": false
},
"display_name": {
"description": "displayable name of the user",
"values": "string",
"optional": false,
"suggested_buffer_size": 40
},
"reputation": {
"description": "reputation of the user",
"values": "32-bit signed integer",
"optional": false
},
"email_hash": {
"description": "email hash, suitable for fetching a gravatar",
"values": "string",
"optional": false,
"suggested_buffer_size": 32
}
},
"post_id": {
"description": "the post the revision is of",
"values": "32-bit signed integer",
"optional": false
}
}
]
}