Skip to content

Update shipping price & data

Request

Endpoint to set shipping price & data

Security
shoptetAccessToken or shoptetPrivateApiToken
Path
shippingRequestCodestringrequired

Shipping request code of cart

Example:0389fc7dd97584790e5ad49010db9c4a
shippingGuidstringrequired

Shipping method based on delivery

Example:ecb3e399-2f57-11eb-8853-0800275177b9
Headers
Content-Typestringrequired
Default:"application/json"
Bodyapplication/json
dataobjectrequired
curl -i -X PUT \
  https://api.docs.shoptet.com/_mock/shoptet-api/openapi/api/shipping-request/0389fc7dd97584790e5ad49010db9c4a/ecb3e399-2f57-11eb-8853-0800275177b9 \
  -H 'Content-Type: application/json' \
  -H 'Shoptet-Access-Token: YOUR_API_KEY_HERE' \
  -d '{
    "data": {
      "description": "Express delivery",
      "additionalText": "Delivery within 48 hours`",
      "price": {
        "priceWithVat": "21.00",
        "priceWithoutVat": "21.00",
        "vatRate": "21.00"
      },
      "currency": "CZK",
      "expires": "2018-05-29T09:02:27",
      "deliveryAddress": {
        "fullName": "John Doe",
        "company": "Shoptet s.r.o.",
        "street": "French",
        "houseNumber": "123",
        "city": "Praha 2",
        "district": "Praha 2",
        "additional": "4. floor",
        "zip": "120 00",
        "countryCode": "CZ",
        "regionName": "Capital city",
        "regionShortcut": "CC"
      },
      "trackingNumber": "U134666",
      "branchId": "314012",
      "branchName": "Čáslav, Jeníkovská 362/66 [Irma Rajmová - Trafika]"
    }
  }'

Responses

OK

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