You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

To retrieve all products that match the specified criteria, use the following request:

GET /products

Query Parameters

Query parameters include the following.

ParameterTypeRequiredDefinition
offsetintegerNoOffset.
namestringNo

Partial, case-insensitive product name.


Example request

GET /products?name=license HTTP/1.1
Authorization: Bearer f794846b7c26621688e1e06164975b4eae8ce2f6

Response

The LAC REST API returns the standard HTTP response codes described in the following table.

Status CodeDescription
200 OKProducts list.

400 Bad Request

Invalid query parameters.
403 ForbiddenInvalid or expired token provided.

Example Response

HTTP/1.1 200 OK
Content-Type: application/json

[
	{
		"id": "1",
		"name": "License Statistics",
		"version": "6.0",
		"description": "",
		"ProductTemplates": [
			{
				"id": "1",
				"name": "Default",
				"product_id": "1"
			}
		]
	}
]
  • No labels