Skip to content

Set shipping method; recomputes totals

POST
/store/v1/carts/{cartId}/shipping-method
curl --request POST \
--url https://your-store.example.com/store/v1/carts/example/shipping-method \
--header 'Content-Type: application/json' \
--data '{ "shippingRateId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0" }'
cartId
required
string
Media type application/json
object
shippingRateId
required
string format: uuid
/^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$/
Example generated
{
"shippingRateId": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"
}