Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Expand
titleCurl request edit distribution datepackage measurements
Code Block
curl --location --request PATCH 'https://staging-ws.di.no/ws/json/parcel/booking/v-1/orders/70724762044206508' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer $SECRET_WS_TOKEN' \
--data-raw '[    
{ 
      "op" : "replace",
      "path" : "/measurements/weightGrams",
      "value" : 600
    },
    { 
      "op" : "replace",
      "path" : "/measurements/lengthCm",
      "value" : 30
    },
    { 
      "op" : "replace",
      "path" : "/measurements/heightCm",
      "value" : 10
    },
    { 
      "op" : "replace",
      "path" : "/measurements/widthCm",
      "value" : 10
    }
]'

...