In the Request Tracker REST API, I have access to the LastUpdated field. However, if I use the Query Builder tool, I can use Updated or LastUpdated. What are the differences between these two fields?
What is the difference between "Updated" and "LastUpdated" in Request Tracker?
485 views Asked by joeforyou At
1
LastUpdatedis the date of last transaction in the ticket.Updatedmeans if the ticket was updated on the given date.For example imagine a ticket
12345created1.1.2019then not touched and closed3.1.2019. When you search for(id = 12345 AND Updated = '2019-01-01'), RT gives you the ticket12345. If you search for(id = 12345 AND Updated = '2019-01-02'), RT wouldn't find anything as well as if you search for(id = 12345 AND LastUpdated = '2019-01-01'). Because theLastUpdateddate would be2019-01-03.To use the
Updateddate through REST API you should use the query:/REST/1.0/search/ticket?query=....