Morgan Soren
Morgan Soren

Reputation: 593

TeamCity ChangeLog Details through API REST

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?

Upvotes: 2

Views: 886

Answers (1)

Vidya
Vidya

Reputation: 30310

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:

https://teamcity.blabla.com/httpAuth/app/rest/changes?buildType=id:20140010&sinceDate=20130305T170030+0400

where the date format is the same as that returned by the API.

Upvotes: 2

Related Questions