# Get list of wiki editors

**URL:** https://meta.discourse.org/t/get-list-of-wiki-editors/80684
**Category:** Development
**Created:** [15 februari 2018 om 22:36 UTC](https://meta.discourse.org/t/get-list-of-wiki-editors/80684 "2018-02-15T22:36:47Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Bolarinwa\_Balogun](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bolarinwa_balogun/32/138753_2.png) [@Bolarinwa\_Balogun](https://meta.discourse.org/u/Bolarinwa_Balogun)
#### Post date: [15 februari 2018 om 22:36 UTC](https://meta.discourse.org/t/get-list-of-wiki-editors/80684/1 "2018-02-15T22:36:47Z")

</div>

Hi,  
I’m working on a plugin that notifies editors of a wiki post when that post has been edited. I was wondering how to get the list of editors of a wiki post so that I can send them a notification when the wiki post has been edited.

Thank you.

---

<div class="post-metadata">

### Author: ![pfaffman](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pfaffman/32/120154_2.png) [@pfaffman](https://meta.discourse.org/u/pfaffman)
#### Post date: [15 februari 2018 om 23:33 UTC](https://meta.discourse.org/t/get-list-of-wiki-editors/80684/2 "2018-02-15T23:33:57Z")

</div>

It’s something like this:

- [https://meta.discourse.org/posts/379377/revisions/latest.json](https://meta.discourse.org/posts/379377/revisions/latest.json)

From there you can find:

```plaintext
first_revision: 2,
previous_revision: 3,
current_revision: 4,
next_revision: null,
last_revision: 4,
current_version: 4,
version_count: 4,

```

and then get things like this:

- [https://meta.discourse.org/posts/379377/revisions/4.json](https://meta.discourse.org/posts/379377/revisions/4.json)
- [https://meta.discourse.org/posts/379377/revisions/3.json](https://meta.discourse.org/posts/379377/revisions/3.json)

---

<div class="post-metadata">

### Author: ![Bolarinwa\_Balogun](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bolarinwa_balogun/32/138753_2.png) [@Bolarinwa\_Balogun](https://meta.discourse.org/u/Bolarinwa_Balogun)
#### Post date: [15 februari 2018 om 23:57 UTC](https://meta.discourse.org/t/get-list-of-wiki-editors/80684/3 "2018-02-15T23:57:22Z")

</div>

Thank you. How did you get the json files?

---

<div class="post-metadata">

### Author: ![pfaffman](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pfaffman/32/120154_2.png) [@pfaffman](https://meta.discourse.org/u/pfaffman)
#### Post date: [15 februari 2018 om 23:58 UTC](https://meta.discourse.org/t/get-list-of-wiki-editors/80684/4 "2018-02-15T23:58:00Z")

</div>

Something like this: [Reverse engineer the Discourse API](https://meta.discourse.org/t/how-to-reverse-engineer-the-discourse-api/20576)
