Skip to content

Order item change

Request

Security
shoptetAccessToken or shoptetPrivateApiToken
Path
codestringrequired

order code (number)

Example:2018000012
idstringrequired

order item id. Can be found in field data.order.items.itemId in Order detail. (number)

Example:198
Query
suppressProductGuidCheckboolean

suppress the product existence check per GUID

Default:false
Example:suppressProductGuidCheck=true
Headers
Content-Typestringrequired
Default:"application/json"
Bodyapplication/json
dataobject, non-emptyrequired
curl -i -X PATCH \
  'https://api.docs.shoptet.com/_mock/shoptet-api/openapi/api/orders/2018000012/item/198?suppressProductGuidCheck=true' \
  -H 'Content-Type: application/json' \
  -H 'Shoptet-Access-Token: YOUR_API_KEY_HERE' \
  -d '{
    "data": {
      "itemType": "product",
      "code": "179/B",
      "vatRate": "21.00",
      "itemPriceWithVat": "121.00",
      "itemPriceWithoutVat": "100.00",
      "unitPriceWithVat": "121.00",
      "unitPriceWithoutVat": "100.00",
      "buyPriceWithVat": "121.00",
      "buyPriceWithoutVat": "100.00",
      "buyPriceVatRate": "21.00",
      "name": "Large chocolate",
      "variantName": "Type: walnut",
      "brand": "Willy Wonka",
      "supplierName": "Dodavatel s.r.o.",
      "productGuid": "1b02cb8e-d7b5-11e0-9a5c-feab5ed617ed",
      "remark": "This is a gift for my friend.",
      "warrantyDescription": "2 years",
      "amountCompleted": "1.000",
      "additionalField": "TO BALÍKOVNA, Karlínské náměstí 145/1, Karlín, 18600, Prague",
      "amount": "1.000",
      "amountUnit": "ks",
      "weight": "100",
      "priceRatio": "0.7000",
      "recyclingFeeId": 1,
      "statusId": -1,
      "consumptionTaxId": 1,
      "consumptionTax": {
        "currency": "CZK",
        "price": "21.00"
      }
    }
  }'

Responses

OK

Bodyapplication/json
dataobjectrequired
errorsArray of objects or null(Errors)required
metadataobject(Metadata)required
Response
{ "data": { "orderItem": {} }, "errors": [ {} ], "metadata": { "requestId": "019c8c34-64f3-7328-af43-bf1e34fa39d7" } }