List Products & SKUs

Retrieve all products for a site. Use limit and offset to page through all products with subsequent requests. All SKUs for each product will also be fetched and returned. The count, limit and offset and total values represent Products only and do not include any SKUs.

Path parameters

site_idstringRequiredformat: "uuid"
Unique identifier for a Site

Headers

AuthorizationstringRequired

Bearer authentication of the form Bearer <token>, where token is your auth token.

Accept-VersionstringOptional
The API version

Query parameters

offsetdoubleOptional
Offset used for pagination if the results have more than limit records
limitdoubleOptional

Maximum number of records to be returned (max limit: 100)

Response

Request was successful
itemslist of objects or null
List of Item objects within the Collection. Contains product and skus keys
countdouble or null
Number of items returned
limitdouble or nullDefaults to 100
The limit specified in the request
offsetdouble or nullDefaults to 0
The offset specified for pagination
totaldouble or null
Total number of items in the collection

Errors