I'm trying to get the changelog details through the REST API. So far, what I've got is this: https://teamcity.blabla.com/httpAuth/app/rest/changes/buildType:(id:20140010), which lists the latest change in the latest build of the buildType. Do you guys know a way I can list N changelog details based on a build range?
Asked
Active
Viewed 845 times
1 Answers
2
Judging from the documentation, I think you are limited to a "since date" (start date) rather than a range. The query would look like this:
where the date format is the same as that returned by the API.

Vidya
- 29,932
- 7
- 42
- 70
-
I assume I can get the date from a specific build. so If the user enters the build. I can look for the build date and then use the sinceDate. – Morgan Soren Dec 27 '13 at 16:17
-
In that case, you can actually use `sinceBuild` then with the id of the build. – Vidya Dec 27 '13 at 16:19
-
Glad to hear it. Good luck with your project! – Vidya Dec 27 '13 at 16:21