Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Floern
Last active April 18, 2017 12:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Floern/f59ab49b190e166a380ed1b655d9a9f9 to your computer and use it in GitHub Desktop.
Save Floern/f59ab49b190e166a380ed1b655d9a9f9 to your computer and use it in GitHub Desktop.

API

Review Monitor

Review History

API URL

GET /api/reviewmonitor-reviews

Parameter

Parameter Description
key API key, that allows read access at least.
user_id (optional) One or more user IDs, separated with |.
post_id (optional) One or more post IDs, separated with |.
review_id (optional) One or more review IDs, separated with |.
queue (optional) One or more queue names, separated with |.
action (optional) One or more review action names, separated with |.
page (optional) Page number (starts from 0, default 0).
filter (optional) Return only the selected fields:
b: action_name
c: post_id
d: post_type
f: queue_name
g: review_date
h: review_id
i: user_id
j: user_name

Example:

?key=asdfgh&queue=first-posts|late-answers&filter=bci

Response

JSON if requested with Accept: application/json, or HTML if requested with Accept: text/html.

JSON
{
    "reviews": [
        {
            "action_name": "no action needed",
            "post_id": 43460518,
            "post_type": "a",
            "queue_name": "late-answers",
            "review_date": 1492413852,
            "review_id": 15861279,
            "user_id": 9227134,
            "user_name": "Incognito"
        },
        ...
    ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment