Wiki History via API

Problem to solve

The Wiki Page History is not included in the API

Further details

Wiki Page History is already a feature so exposing via the API hopefully is not a big effort. This feature would greatly assist our organization's standards documentation workflow.

Proposal

Include the Wiki Page History data in Wiki API

What does success look like, and how can we measure that?

Wiki Page History data is included in Wiki API, preferably history sorted by last updated. Something similar to this:

{
  "format": "markdown",
  "slug": "foo",
  "title": "Foo Title",
  "content": "...",
  "history": [
    {
      "versionId": 18768408,
      "author": "Me",
      "commitMessage": "atomic commit",
      "lastUpdated": "2018-08-17T22:28:16Z"
    },
    {
      "versionId": 21734564,
      "author": "Me",
      "commitMessage": "another commit",
      "lastUpdated": "2018-04-15T22:28:16Z"
    }
  ]
}