curl --location --request POST 'https://auth.zamupay.com/v1/checkout-order/new-order' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"originatorConversationId": "c1a9f0d4-6e2b-4a8f-b9d3-5f7c2e1a4b66",
"checkoutRouteId": "DED81224-70B6-ED11-AD49-0EE00E897F52",
"checkoutRouteChannelType": 134,
"checkoutNotes": "Customer checkout for apparel purchase",
"checkoutCcy": 404,
"checkoutDueDate": "2026-12-31T23:59:59Z",
"checkoutReturnUrl": "https://checkout.merchant.com/payment/response",
"checkoutCancelUrl": "https://checkout.merchant.com/payment/cancel",
"checkoutCallbackUrl": "https://checkout.merchant.com/api/payment/result",
"checkoutReference": "ORD-20260126-7845",
"checkoutAccountNo": "0072",
"checkoutOrderLines": [
{
"sku": "SHRT-BLK-XL-9981",
"name": "Black Shirt XL",
"price": 2500.0
},
{
"sku": "SHRT-BLU-L-4421",
"name": "Blue Shirt Large",
"price": 2200.0
},
{
"sku": "SHRT-GRN-M-7712",
"name": "Green Shirt Medium",
"price": 2300.0
}
]
}'