5

Reputation gain from edits to tag wikis appear through the API; the API reports them as answers, but fetching them via the /answers route does not work.

Case in point:

  • My accepted edit (+2 rep)
  • My reputation report via the API:

    {
      "user_id": 23,
      "post_id": 15885,
      "post_type": "answer",
      "positive_rep": 2,
      "negative_rep": 0,
      "on_date": 1296727329
    },
    
  • The reply for /answers/15885:

    {
      "total": 0,
      "page": 1,
      "pagesize": 30,
      "answers": []
    }
    

(/questions/15885 also gives no results.)

badp
  • 955
  • 6
  • 23

1 Answers1

2

Reputation gains from suggested edits are no longer returned by that route.

Kevin Montrose
  • 18,660
  • 6
  • 34
  • 62