Listing cases with starred column - FogBugz Knowledge Exchange most recent 30 from http://fogbugz.stackexchange.com 2013-05-25T10:15:22Z http://fogbugz.stackexchange.com/feeds/question/10893 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://fogbugz.stackexchange.com/questions/10893/listing-cases-with-starred-column Listing cases with starred column Christopher Atlan 2012-10-23T13:12:40Z 2012-10-23T14:49:37Z <p>Apparently <a href="http://fogbugz.stackexchange.com/questions/5751/whats-new-in-fogbugz-8-1-1" rel="nofollow">FogBugz 8.1</a> added "It's now possible to star and unstar cases via the API. Admins can star or unstar cases for other users" but I can't figure out how to request the starred status of a case.</p> <p>I tried: </p> <ul> <li>cmd=search?cols=star</li> <li>cmd=search?cols=ixStar</li> <li>cmd=search?cols=sStar</li> <li>cmd=search?cols=starred</li> <li>cmd=search?cols=ixStarred</li> <li>cmd=search?cols=sStarred</li> </ul> http://fogbugz.stackexchange.com/questions/10893/listing-cases-with-starred-column/10894#10894 Answer by db for Listing cases with starred column db 2012-10-23T14:44:28Z 2012-10-23T14:49:37Z <p>As mentioned, it is now possible to <a href="http://fogbugz.stackexchange.com/fogbugz-xml-api#starUnstar" rel="nofollow">star and unstar items via the XML API</a>. Administrators can also star/unstar items for users other than themselves.</p> <p>However, you cannot currently include the "starred" column in your XML API query results, nor can you query which cases are starred by any user other than yourself (even if you're an admin).</p> <p>You can retrieve a list of <em>your</em> currently starred cases with the following query:</p> <p><code>cmd=search&amp;q=starredby:me</code></p>