Is there a REST API to get the active build configurations in teamcity?

I need to know if there is a REST API to get the list of active build configurations only?

 

0
3 comments
Hi,

If by active build configuration you mean the build configurations that are not paused (see https://www.jetbrains.com/help/teamcity/changing-build-configuration-status.html), then the following request will return them:
GET /app/rest/buildTypes?locator:(paused:false)

Best regards,
Anton
1

Hi Anton, Thanks for the response. I still see the data is same as before. I don't see the difference of data with /app/rest/buildTypes?locator:(paused:false) and /app/rest/buildTypes?

0
What is the response of /app/rest/buildTypes?locator:(paused:true)?
0

Please sign in to leave a comment.