Get a product (manager)

GET /manager/products/{id}

Path parameters

  • id integer Required

    Numeric ID of the product to retrieve

Responses

GET /manager/products/{id}
curl \
 -X GET https://domain.tld/api/v2/manager/products/{id} \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "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"
}
Response examples (401)
{
  "message": "Unauthorized."
}