-
Notifications
You must be signed in to change notification settings - Fork 9
Get an item's history
Quadrollopo edited this page Oct 5, 2020
·
2 revisions
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"
}
]