Handling shipping choice
Learn how to set and use a customer's shipping choice in checkouts
Setting shipping choice
curl --location --request POST 'https://api.digitalriver.com/checkouts/04ea45eb-2bb8-4ea9-a772-37e5fbd5d1fe' \
...
--data-raw '{
"shipFrom": {
"address": {
"country": "US"
}
},
"shippingChoice": {
"id": "123",
"amount": 5,
"description": "standard",
"serviceLevel": "SG",
"shippingTerms": "DDP"
}
}'Unique shipping identifier
Shipping amount
Shipping description and service level
Shipping terms
Delivered at place (DAP)
Delivered duty paid (DDP)
Using shipping costs
Last updated