Skip to content

Get an item's history

Quadrollopo edited this page Oct 5, 2020 · 2 revisions

Get an item's history

Request:

GET /v2/items/{id}/history

Return:

  • change string the change occured, see the list below
  • other string where is moved, if moved, else null
  • time string when the change happened
  • user string who made the change

Change char list:

  • C: create
  • U: update, feature(s) are modificated
  • M: move
  • D: delete
  • R: rename
  • L: lose

Example:

[
  {
  "change": "M",
  "other": "B25",
  "time": "1590355283.959208",
  "user": "ExampleScript"
  },
  {
    "change": "U",
    "other": null,
    "time": "1590355283.956257",
    "user": "ExampleScript"
  },
  {
    "change": "C",
    "other": null,
    "time": "1590355283.949887",
    "user": "ExampleScript"
  }
]
Clone this wiki locally