Query parameters
-
filter[name] string
Filter by name
-
filter[description] string
Filter by description
-
filter[sku] string
Filter by sku
-
filter[price] string
Filter by price
-
filter[stock] string
Filter by stock
GET /manager/products
curl \
-X GET https://domain.tld/api/v2/manager/products \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"current_page": 42,
"data": [
{
"id_product": 42,
"name": "string",
"type": "string",
"discount_percentage": 42.0,
"price_catalog": 42,
"reference_unit_price": 42,
"sku": "string",
"youtube_id": "string",
"url": "string",
"description": "string",
"images": [
{
"id_i18n_content": 42,
"lang": "en_GB",
"content": "Hello"
}
],
"price": 42.0,
"stock": 42,
"stock_available": 42.0,
"old_image": "string"
}
],
"first_page_url": "string",
"from": 42,
"last_page": 42,
"last_page_url": "string",
"links": [
{
"url": "string",
"label": "string",
"active": true
}
],
"next_page_url": "string",
"path": "string",
"per_page": 42,
"prev_page_url": "string",
"to": 42,
"total": 42
}
Response examples (401)
{
"message": "Unauthorized."
}