Skip to main content
PATCH
/
{shopId}
/
products
/
63ec9527e29310243b665e9e
Update product variants
curl --request PATCH \
  --url http://staging.qshop.ng/apiv2/{shopId}/products/63ec9527e29310243b665e9e \
  --header 'Content-Type: application/json' \
  --data '
{
  "attributes": [
    {
      "name": {
        "_id": "620230bd0d148855678615c3",
        "name": "Color"
      },
      "options": [
        {
          "id": "633595a632a48354241eedee",
          "label": "Color",
          "name": "Space grey"
        },
        {
          "id": "63359d60cfce8ece38311278",
          "label": "Color",
          "name": "Black"
        }
      ]
    }
  ],
  "price": 21000000,
  "sale_price": 19000000,
  "typeAttributes": {
    "packaging": {
      "height": 115.24,
      "length": 145.72,
      "weight": 4500,
      "width": 135.56
    }
  },
  "variants": [
    {
      "_id": "63ec9527e29310243b665e9c",
      "alwaysInStock": false,
      "costPrice": null,
      "dimension": {
        "height": 7,
        "length": 30,
        "unit": "m",
        "width": 50
      },
      "isActive": true,
      "options": [
        {
          "id": "63359d60cfce8ece38311278",
          "label": "Color",
          "name": "Black"
        }
      ],
      "price": 3000000,
      "sale_price": null,
      "sku": "toyota-corolla-black-65e9b",
      "stock": 15,
      "weight": {
        "base": {
          "unit": null,
          "value": null
        },
        "unit": "kg",
        "value": 20000
      }
    }
  ],
  "variantsInheritPrice": true
}
'

Body

application/json
attributes
object[]
Example:
[
{
"name": {
"_id": "620230bd0d148855678615c3",
"name": "Color"
},
"options": [
{
"id": "633595a632a48354241eedee",
"label": "Color",
"name": "Space grey"
},
{
"id": "63359d60cfce8ece38311278",
"label": "Color",
"name": "Black"
}
]
}
]
price
number
Example:

21000000

sale_price
number
Example:

19000000

typeAttributes
object
variants
object[]
Example:
[
{
"_id": "63ec9527e29310243b665e9c",
"alwaysInStock": false,
"costPrice": null,
"dimension": {
"height": 7,
"length": 30,
"unit": "m",
"width": 50
},
"isActive": true,
"options": [
{
"id": "63359d60cfce8ece38311278",
"label": "Color",
"name": "Black"
}
],
"price": 3000000,
"sale_price": null,
"sku": "toyota-corolla-black-65e9b",
"stock": 15,
"weight": {
"base": { "unit": null, "value": null },
"unit": "kg",
"value": 20000
}
}
]
variantsInheritPrice
boolean
Example:

true

Response

200 - undefined