Get build pin info
Answered
Hi ,
I can do following
curl -s -u user:pass http://abc.com/app/rest/builds/id:12345/status
But can't do following.
curl -s -u user:pass http://abc.com/app/rest/builds/id:12345/pinned
Any one-liner way of getting if a build is pinned or not?
Using latest TC.
Thanks
Please sign in to leave a comment.
There is no fast access for "pinned", but you can access any field by locating it through ?fields=. In your example:
http://abc.com/app/rest/builds/id:12345/?fields=pinned
Thanks! This works.