Product API

Product

GET /api/v1/product

Return a list of products and the product versions it owns.

Format :(required) The API always requires a value of json for this field.
Name :(optional) The name of the product to filter on.
Limit :(optional) Defaults to 20 items, but can be set higher or lower. 0 will return all records.

Example request:

GET /api/v1/product/?format=json

Product Version

GET /api/v1/productversion

Return a list of product versions.

Note

The underscores in query params (like case__suites) are DOUBLE underscores.

Format :(required) The API always requires a value of json for this field.
Version :(optional) The ProductVersion name to filter on. For example, if the Product and Version are Firefox 10 then the version would be 10.
Product__name :(optional) The Product name to filter on.
Limit :(optional) Defaults to 20 items, but can be set higher or lower. 0 will return all records.

Example request:

GET /api/v1/productversion/?format=json&version=10
GET /api/v1/productversion/?format=json&product__name=Firefox

Project Versions

Table Of Contents

Previous topic

REST API

Next topic

Test Cases and Suites API

This Page