curl -X POST "https://openplatform.gateapi.io/v1/pay/checkout/order" \
-H "Content-Type: application/json" \
-H "X-GatePay-Certificate-ClientId: your_client_id" \
-H "X-GatePay-Timestamp: 1710000000000" \
-H "X-GatePay-Nonce: abc123xyz789" \
-H "X-GatePay-Signature: generated_signature" \
-d '{
"merchantTradeNo": "M202604150001",
"currency": "USDT",
"orderAmount": "10.00",
"goods": {
"goodsName": "Demo Order",
"goodsDetail": "First payment integration test"
},
"callbackUrl": "https://merchant.example.com/webhook/gatepay",
"returnUrl": "https://merchant.example.com/result"
}'