curl --request PATCH \
--url https://sandbox.gateway.sezzle.com/v2/order/{order_uuid}/checkout \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"currency_code": "USD",
"address_uuid": "some-uuid-1234",
"shipping_options": [
{
"name": "Standard Shipping",
"description": "3-5 business days",
"shipping_amount_in_cents": 500,
"tax_amount_in_cents": 500,
"final_order_amount_in_cents": 20000
},
{
"name": "Express Shipping",
"description": "1-2 business days",
"shipping_amount_in_cents": 1000,
"tax_amount_in_cents": 1000,
"final_order_amount_in_cents": 20000
}
]
}
'