Get a specific product

Method : GET

https://admin.vucustom.com/api/:api_version/products?id=&sku

URL Parameters

Field Name
Description

id

Returns only one product specified by the system generated id

sku

Returns only products specified by sku

Example Request
curl --location 'https://admin.vucustom.com/api/v1/products?id=&sku='

200 Successful response example

{
  "product": {
    "id": 14,
    "product_categories": [
      "SKATE"
    ],
    "name": "2s3test",
    "b2b": true,
    "active": true,
    "customize_only": false,
    "code": null,
    "product_variants": [
      {
        "id": 6,
        "sku": "1063458",
        "name": "test",
        "upc": "UPC123",
        "code": null
      }
    ]
  }
}

Last updated