Bugzilla:BzAPI:HowTo

From MozillaWiki
Revision as of 17:55, 13 November 2009 by Gerv (talk | contribs) (Created page with 'This page is a repository for tips, tricks, ideas, code samples etc. for the Bugzilla REST API. ==Requests== There is no API equivalent of request.cgi, but you can get the same…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This page is a repository for tips, tricks, ideas, code samples etc. for the Bugzilla REST API.

Requests

There is no API equivalent of request.cgi, but you can get the same information via the standard search, and it returns much more information about each bug. Use the Boolean Charts, and the fields flag.requestee, flag.setter, product, component and flag to replicate the searches that request.cgi give you, and of course you can add in any other parameters you want to search on.

Then, when you get the bug objects back, ... So this is why we need a way to get multiple full bug objects at once. XXX