Update an existing order.
| Time | Status | User Agent | |
|---|---|---|---|
| Make a request to see history. |
URL Expired
The URL for this request expired after 30 days.
orderId
string
required
fulfillmentType
string
enum
Fulfillment methodology of the shipment.
customerat_largereturnshundredweightreshipunknown
Allowed:
customer``at_large``returns``hundredweight``reship``unknown
associatedIdentifiers
array of strings
Associated identifiers that are indexed to identify this order. This can be an LPN for instance that is bound to the order. Can be searched but not interchangeable with orderId.
associatedIdentifiers ADD string
orderItemQuantities
array of objects
required
A list of orderItems comprising the shipment.
orderItemQuantities* ADD object
shipFromAddress
object
Address details of the sold to party for customs purposes
shipFromAddressobject
originId
string
Origin where the order is assigned to. Cannot be assigned if shipFromAddress is also populated
destinationAddress
object
required
Address details of the sold to party for customs purposes
destinationAddressobject
shipOption
string
A high-level shipping option shown to or selected by a customer.
customsInfo
object
Customs information about the package for international shipping.
customsInfoobject
currencyCode
string
Currency used in the transaction resulting in the order.
totalDeclaredValue
object
The total monetary amount of the declared value for the package. This is what will be reimbursed if the package is damaged. If the declared value exceeds the carrier's free threshold, there may a surcharge for passing a declared value.
totalDeclaredValueobject
orderFulfillmentParameters
object
These represent hints that correspond to Shipment Parameters that can be specified ahead of shipment creation on the order. These can be overridden at the time of shipment creation.
orderFulfillmentParametersobject
``200 Updated Order.
``400 Order could not be updated.
``404 Order could not be found.
Updated 26 days ago
ShellNodeRubyPHPPython
Bearer
xxxxxxxxxx
curl --request POST \
--url https://api.shipium.com/api/v1/deliveryexperience/order/orderId \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"orderFulfillmentParameters": {
"deliveryParameters": {
"applyToSplits": false,
"saturdayDelivery": false
}
}
}
'
application/json
200400``404
Updated26 days ago