Item History Endpoint
Get
This method returns the history of a specific Item.
Get/api/items/{itemid}/history
The URL must have the Item Id. It returns a list of IssueAuditDto's.
Microsoft.NET example:
List<IssueAuditDto> history = serviceManager.Item.GetHistory(36);
JavaScript example:
var geminiUrl = "http://localhost/gemini/api/items/36/history";
var geminiUsername = Base64.encode("manager:xvitjc5bmm"); // user : apikey
$.ajax({
url: geminiUrl,
type: "GET",
headers: { "Authorization": "Basic " + geminiUsername },
success: function (data) {
alert('Success!');
}
});