To get information about all fields:
-GET /field/bug
+GET /rest/field/bug
To get information related to a single field:
-GET /field/bug/<id_or_name>
+GET /rest/field/bug/<id_or_name>
The returned data format is the same as below.
To get information about all flag types for a product:
-GET /flag_types/<product>
+GET /rest/flag_types/<product>
To get information about flag_types for a product and component:
-GET /flag_types/<product>/<component>
+GET /rest/flag_types/<product>/<component>
The returned data format is the same as below.
To get information on the values for a field based on field name:
-GET /field/bug/<field_name>/values
+GET /rest/field/bug/<field_name>/values
To get information based on field name and a specific product:
-GET /field/bug/<field_name>/<product_id>/values
+GET /rest/field/bug/<field_name>/<product_id>/values
The returned data format is the same as below.
To get all current attachments for a bug:
-GET /bug/<bug_id>/attachment
+GET /rest/bug/<bug_id>/attachment
To get a specific attachment based on attachment ID:
-GET /bug/attachment/<attachment_id>
+GET /rest/bug/attachment/<attachment_id>
The returned data format is the same as below.
To get all comments for a particular bug using the bug ID or alias:
-GET /bug/<id_or_alias>/comment
+GET /rest/bug/<id_or_alias>/comment
To get a specific comment based on the comment ID:
-GET /bug/comment/<comment_id>
+GET /rest/bug/comment/<comment_id>
The returned data format is the same as below.
To get information about a particular bug using its ID or alias:
-GET /bug/<id_or_alias>
+GET /rest/bug/<id_or_alias>
The returned data format is the same as below.
To get the history for a specific bug ID:
-GET /bug/<bug_id>/history
+GET /rest/bug/<bug_id>/history
The returned data format will be the same as below.
To create a new bug in Bugzilla:
-POST /bug
+POST /rest/bug
The params to include in the POST body as well as the returned data format,
are the same as below.
To create attachment on a current bug:
-POST /bug/<bug_id>/attachment
+POST /rest/bug/<bug_id>/attachment
The params to include in the POST body, as well as the returned
data format are the same as below. The C<ids> param will be
To update attachment metadata on a current attachment:
-PUT /bug/attachment/<attach_id>
+PUT /rest/bug/attachment/<attach_id>
The params to include in the POST body, as well as the returned
data format are the same as below. The C<ids> param will be
To create a comment on a current bug:
-POST /bug/<bug_id>/comment
+POST /rest/bug/<bug_id>/comment
The params to include in the POST body as well as the returned data format,
are the same as below.
To update the fields of a current bug:
-PUT /bug/<bug_id>
+PUT /rest/bug/<bug_id>
The params to include in the PUT body as well as the returned data format,
are the same as below. The C<ids> param will be overridden as it is
To search for comment tags:
-GET /bug/comment/tags/<query>
+GET /rest/bug/comment/tags/<query>
=item B<Params>
To update the tags comments attached to a comment:
-PUT /bug/comment/tags
+PUT /rest/bug/comment/tags
The params to include in the PUT body as well as the returned data format,
are the same as below.
=item B<REST>
-GET /product_selectable
+GET /rest/product_selectable
the returned data format is same as below.
=item B<REST>
-GET /product_enterable
+GET /rest/product_enterable
the returned data format is same as below.
=item B<REST>
-GET /product_accessible
+GET /rest/product_accessible
the returned data format is same as below.
To return information about a specific groups of products such as
C<accessible>, C<selectable>, or C<enterable>:
-GET /product?type=accessible
+GET /rest/product?type=accessible
To return information about a specific product by C<id> or C<name>:
-GET /product/<product_id_or_name>
+GET /rest/product/<product_id_or_name>
You can also return information about more than one specific product
by using the following in your query string:
-GET /product?ids=1&ids=2&ids=3 or GET /product?names=ProductOne&names=Product2
+GET /rest/product?ids=1&ids=2&ids=3 or GET /product?names=ProductOne&names=Product2
the returned data format is same as below.
=item B<REST>
-POST /product
+POST /rest/product
The params to include in the POST body as well as the returned data format,
are the same as below.
=item B<REST>
-PUT /product/<product_id_or_name>
+PUT /rest/product/<product_id_or_name>
The params to include in the PUT body as well as the returned data format,
are the same as below. The C<ids> and C<names> params will be overridden as